fix(settings): Fix names, remove hosts to allow unrestriced hosts to access

This commit is contained in:
moanos [he/him] 2024-03-17 11:36:47 +01:00
parent 7e98043fac
commit 126f0d4d32
2 changed files with 2 additions and 3 deletions

View File

@ -1,9 +1,8 @@
# DEBUG CONFIGURATION
# DO NOT USE IN PRODUCTION
[ilmo]
[notfellchen]
instance_name=Notfellchen DEBUG
host=localhost
[django]
secret=CHANGE-ME

View File

@ -54,7 +54,7 @@ DEBUG = config.getboolean('django', 'debug', fallback=False)
""" DATABASE """
DB_BACKEND = config.get("database", "backend", fallback="sqlite3")
DB_NAME = config.get("database", "name", fallback="ilmo.sqlite3")
DB_NAME = config.get("database", "name", fallback="notfellchen.sqlite3")
DB_USER = config.get("database", "user", fallback='')
DB_PASSWORD = config.get("database", "password", fallback='')
DB_HOST = config.get("database", "host", fallback='')