diff --git a/authserver/authserver/settings.py b/authserver/authserver/settings.py index a14b0de..e28c57f 100644 --- a/authserver/authserver/settings.py +++ b/authserver/authserver/settings.py @@ -94,7 +94,7 @@ CORS_ORIGIN_ALLOW_ALL = True DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + 'NAME': os.path.join(BASE_DIR, 'data/db.sqlite3'), } } @@ -124,7 +124,7 @@ USE_TZ = True STATIC_URL = '/static/' -MEDIA_ROOT = os.path.join(BASE_DIR, 'media') +MEDIA_ROOT = os.path.join(BASE_DIR, 'data') MEDIA_URL = '/media/' PROTOSPACE_LOGIN_PAGE = 'https://my.protospace.ca/login' diff --git a/authserver/media/.gitkeep b/authserver/media/.gitkeep deleted file mode 100644 index e69de29..0000000