Re: Django - Website Bootstrap Design Breaks For Production

2015-07-17 Thread Timothy W. Cook
You may find that even after running collectstatic the dev server doesn't see the static files. You can add the --insecure option to runserver, with DEBUG=False and it should work as expected. On Fri, Jul 17, 2015 at 6:44 AM, Andreas Kuhne wrote: > Hi, > > There is a difference to running the r

Re: Django - Website Bootstrap Design Breaks For Production

2015-07-17 Thread Andreas Kuhne
Hi, There is a difference to running the runserver in development and production mode. In development mode the server automatically serves all of you static files (JS and CSS). In production mode you should have a webserver in front of the uwsgi server that serves the python code. For example you