14 lines
492 B
Python
14 lines
492 B
Python
class HostConfig:
|
|
MAIN_HOST = "10.10.2.36" # http://10.10.2.36
|
|
EMAIL_HOST = "10.10.2.34" # http://10.10.2.34
|
|
|
|
|
|
class MainConfig:
|
|
DATETIME_FORMAT = "YYYY-MM-DD HH:mm:ss Z"
|
|
DATETIME_FORMAT_JS = "YYYY-MM-DD HH:mm:ss +0"
|
|
|
|
# Timezone Configuration
|
|
DEFAULT_TIMEZONE = "GMT+3" # Default timezone for the application
|
|
SYSTEM_TIMEZONE = "GMT+0" # System timezone (used for internal operations)
|
|
SUPPORTED_TIMEZONES = ["GMT+0", "GMT+3"] # List of supported timezones
|