File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ EXPOSE 8000
3838
3939# CloudPebble stuff
4040RUN npm install -g bower && echo '{"allow_root": true}' > ~/.bowerrc
41- RUN npm install -g uglifyjs clean-css
41+ RUN npm install -g uglify-js clean-css
4242
4343# Grab the toolchain
4444RUN curl -o /tmp/arm-cs-tools.tar https://cloudpebble-vagrant.s3.amazonaws.com/arm-cs-tools-stripped.tar && \
Original file line number Diff line number Diff line change 88
99DEBUG = _environ .get ('DEBUG' , '' ) != ''
1010
11+ BASE_DIR = os .path .dirname (os .path .dirname (__file__ ))
12+
1113ADMINS = (
1214 (
'Administrator' ,
'[email protected] ' ),
1315)
9092# Don't put anything in this directory yourself; store your static files
9193# in apps' "static/" subdirectories and in STATICFILES_DIRS.
9294# Example: "/var/www/example.com/static/"
93- STATIC_ROOT = 'staticfiles'
95+ STATIC_ROOT = os . path . join ( BASE_DIR , 'staticfiles' )
9496
9597# URL prefix for static files.
9698# Example: "http://example.com/static/", "http://static.example.com/"
353355 }
354356 },
355357 'loggers' : {
356- 'django ' : {
358+ '* ' : {
357359 'handlers' : ['console' ],
358360 'level' : 'DEBUG' ,
359361 'propagate' : False
You can’t perform that action at this time.
0 commit comments