diff --git a/.gitignore b/.gitignore index 600d2d3..69848de 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.vscode \ No newline at end of file +.vscode +src/static \ No newline at end of file diff --git a/src/superlists/settings.py b/src/superlists/settings.py index 0a2aa81..0445381 100644 --- a/src/superlists/settings.py +++ b/src/superlists/settings.py @@ -31,7 +31,7 @@ ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = [ - 'django.contrib.admin', + # 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', @@ -119,3 +119,4 @@ USE_TZ = True # https://docs.djangoproject.com/en/1.11/howto/static-files/ STATIC_URL = '/static/' +STATIC_ROOT = os.path.join(BASE_DIR, 'static') \ No newline at end of file