albrechtjan / workload

Survey web application for TU Dresden
survey.zqa.tu-dresden.de
GNU Affero General Public License v3.0
0 stars 0 forks source link

Go through Django deployment checklist. #39

Closed KonstantinSchubert closed 8 years ago

KonstantinSchubert commented 9 years ago

Especially with secret key. What is it for?

KonstantinSchubert commented 9 years ago

Took care of secret key. To do, among others:

STATIC_ROOT

turn DEBUG off !!!!!

KonstantinSchubert commented 9 years ago

about static root: https://docs.djangoproject.com/en/1.8/howto/static-files/#deployment

I am currently serving my static files already via the apache2 server directly from the app directory. Of course it would be better to serve them from static_root after copying them there with collectstatic

KonstantinSchubert commented 9 years ago

setting up the logging is still an urgent todo:

https://docs.djangoproject.com/en/1.7/topics/logging/