aboutsummaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2024-10-25 18:03:18 +0200
committerKaran Jayachandra <mail@karanjayachandra.com>2024-10-25 18:03:18 +0200
commit60a489cfb3fb7a12a06212c2c7ed3c05cd0757b5 (patch)
tree8bf7b9cc50d8b133fe0666b0bff7fa143cd095a5 /config.py
parent2b18e0929a0b3e083cbe9e5e8ffd421ed8d17e52 (diff)
Moved the files into a folder structure
Diffstat (limited to 'config.py')
-rw-r--r--config.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/config.py b/config.py
deleted file mode 100644
index 7d01933..0000000
--- a/config.py
+++ /dev/null
@@ -1,16 +0,0 @@
-class Config:
- DEBUG = False
- DEVELOPMENT = False
- CSRF_ENABLED = True
- ASSETS_DEBUG = False
-
-
-class ProductionConfig(Config):
- pass
-
-
-class DevelopmentConfig(Config):
- DEBUG = True
- DEVELOPMENT = True
- TEMPLATES_AUTO_RELOAD = True
- ASSETS_DEBUG = True