Hi guys, I was curious what type of setups people do for getting debug mode on. I would really like to be able to have debug mode turned on locally, but off online at pythonanywhere server. I have thought of two options.
- create a branch for my working code on my github, and another branch on the repo that is my live code with debug=false. This is my current approach.
- Setting up a .gitignore to ignore my django settings.py file which I feel strongly is les desirable because I may have to change things there in the future.
Do people also have any other tips?
Also, how can I get rid of the help page for setting up a web app on the top of the site now that mine is up?
Thanks, Derek