Skip to content

Commit 137dd4a

Browse files
committed
local run changes
1 parent f81e158 commit 137dd4a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

movie_recommender/settings.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212

1313
import os
14-
from movie_recommender.aws.conf import *
14+
# from movie_recommender.aws.conf import *
1515
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
1616
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
1717

@@ -23,7 +23,7 @@
2323
SECRET_KEY = '40_$n*hs61m(shf^y0q6&th7i^b!t1rw6k-458_0)ed34ji73v'
2424

2525
# SECURITY WARNING: don't run with debug turned on in production!
26-
DEBUG = False
26+
DEBUG = True
2727
ALLOWED_HOSTS = ['awesome-movie-recommender.herokuapp.com', '127.0.0.1']
2828

2929
# Application definition
@@ -120,10 +120,10 @@
120120

121121
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles/')
122122
STATIC_URL = '/static/'
123-
# STATICFILES_DIRS = ([
124-
# os.path.join(BASE_DIR, "static"),
125-
# ])
126-
STATICFILES_DIRS = ()
123+
STATICFILES_DIRS = ([
124+
os.path.join(BASE_DIR, "static"),
125+
])
126+
# STATICFILES_DIRS = ()
127127

128128
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
129129
MEDIA_URL = '/media/'

0 commit comments

Comments
 (0)