Skip to content

Commit

Permalink
Create config.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Aug 3, 2024
1 parent b646d8c commit 8084581
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions blockchain_integration/pi_network/pi_network_university/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Configuration file for the project

# Database settings
DB_HOST = 'localhost'
DB_PORT = 5432
DB_NAME = 'mydatabase'
DB_USER = 'myuser'
DB_PASSWORD = 'mypassword'

# API settings
API_HOST = '0.0.0.0'
API_PORT = 5000

# Logging settings
LOG_LEVEL = 'DEBUG'
LOG_FILE = 'app.log'

# Other settings
SECRET_KEY = 'my_secret_key'
DEBUG = True

0 comments on commit 8084581

Please sign in to comment.