diff options
Diffstat (limited to '_deploy/debian-server/localsettings-2024-12-31.py')
-rw-r--r-- | _deploy/debian-server/localsettings-2024-12-31.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/_deploy/debian-server/localsettings-2024-12-31.py b/_deploy/debian-server/localsettings-2024-12-31.py index 87979d5..0e2fe6f 100644 --- a/_deploy/debian-server/localsettings-2024-12-31.py +++ b/_deploy/debian-server/localsettings-2024-12-31.py @@ -34,7 +34,8 @@ DATABASES = { 'ENGINE': 'django.db.backends.mysql', # 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. "OPTIONS": { "charset": "utf8mb4", # To permit emojis in logbook entries and elsewhere - }, 'NAME' : 'troggle', # Or path to database file if using sqlite3. + }, + 'NAME' : 'troggle', # Or path to database file if using sqlite3. 'USER' : 'expo', # Not used with sqlite3. 'PASSWORD' : 'not-the-real-password', # Not used with sqlite3. 'HOST' : '', # Set to empty string for localhost. Not used with sqlite3. |