feat: added tailwind

This commit is contained in:
2024-11-20 18:09:44 +01:00
parent 14d11cf0b9
commit 3783ec0942
21 changed files with 1698 additions and 10 deletions
+2 -2
View File
@@ -14,8 +14,8 @@ if os.path.exists(env_file):
SECRET_KEY = env.str("SECRET_KEY", "this-is-the-default-secret-key")
DEBUG = env.bool("DEBUG", True)
CORS_ORIGIN_WHITELIST = env.str('CORS_ORIGIN_WHITELIST', default='').split(',')
CSRF_TRUSTED_ORIGINS = env.str('CSRF_TRUSTED_ORIGINS', '').split(',')
CORS_ORIGIN_WHITELIST = env.str("CORS_ORIGIN_WHITELIST", default="").split(",")
CSRF_TRUSTED_ORIGINS = env.str("CSRF_TRUSTED_ORIGINS", "").split(",")
DATABASE_URL = env.db_url("DATABASE_URL", "sqlite:///db.sqlite3")