How can I be certain that my application is running on development server or not? I suppose I could check value of settings.DEBUG and assume if DEBUG is True then it's running on development server, but I'd prefer to know for sure than relying on convention.
|
3
|
|
|
|
|
|
Of course, By the way, I discovered this by making a syntatically invalid template while running on the development server, and searched for interesting stuff on the |
||||
|
|
|
Relying on settings.DEBUG is the most elegant way AFAICS as it is also used in Django code base on occasion. I suppose what you really want is a way to set that flag automatically without needing you update it manually everytime you upload the project to production servers. For that I check the path of settings.py (in settings.py) to determine what server the project is running on:
Mind you, you might also prefer doing this check with environment variables as @Soviut suggests. But as someone developing on Windows and serving on Linux checking the file paths was plain easier than going with environment variables. |
||
|
|
|
|
Typically I set an variable called EDIT: Additionally, you can simply use this logic to include different
|
|||
|
|
|
|
One difference between the development and deployment environment is going to be the server that it’s running on. What exactly is different will depend on your dev and deployment environments. Knowing your own dev and deploy environments, the HTTP request variables could be used to distinguish between the two. Look at request variables like I bet you’ll find something quite obvious that’s different and can be used to detect your development environment. Do the test in |
||
|
|
|
|
settings.DEBUG could be True and running under Apache or some other non-development server. It will still run. As far as I can tell, there is nothing in the run-time environment short of examining the pid and comparing to pids in the OS that will give you this information. |
||
|
|
