Fixed docker start up issue
This commit is contained in:
@@ -14,8 +14,8 @@ class Config:
|
||||
"""Base configuration class."""
|
||||
DEBUG: bool = os.environ.get('DEBUG', 'False').lower() == 'true'
|
||||
TESTING: bool = os.environ.get('TESTING', 'False').lower() == 'true'
|
||||
PORT: int = int(os.environ.get('PORT', 8080)) # Changed default port to 8080
|
||||
|
||||
PORT: int = int(os.environ.get('PORT', 8080)) # Changed default from 5000 to 8080
|
||||
|
||||
# API credentials
|
||||
API_USERNAME: str = os.environ.get('API_USERNAME', 'admin')
|
||||
API_PASSWORD: str = os.environ.get('API_PASSWORD', 'password')
|
||||
|
||||
Reference in New Issue
Block a user