File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 11
11
"""
12
12
13
13
import os
14
- from movie_recommender .aws .conf import *
14
+ # from movie_recommender.aws.conf import *
15
15
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
16
16
BASE_DIR = os .path .dirname (os .path .dirname (os .path .abspath (__file__ )))
17
17
23
23
SECRET_KEY = '40_$n*hs61m(shf^y0q6&th7i^b!t1rw6k-458_0)ed34ji73v'
24
24
25
25
# SECURITY WARNING: don't run with debug turned on in production!
26
- DEBUG = False
26
+ DEBUG = True
27
27
ALLOWED_HOSTS = ['awesome-movie-recommender.herokuapp.com' , '127.0.0.1' ]
28
28
29
29
# Application definition
120
120
121
121
STATIC_ROOT = os .path .join (BASE_DIR , 'staticfiles/' )
122
122
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 = ()
127
127
128
128
MEDIA_ROOT = os .path .join (BASE_DIR , 'media' )
129
129
MEDIA_URL = '/media/'
You can’t perform that action at this time.
0 commit comments