- Author:
- DavidHulsmanNL
- Posted:
- July 26, 2017
- Language:
- Python
- Version:
- Not specified
- Score:
- 1 (after 1 ratings)
- Next to the Play button you can Edit Configuration
- Click the green + on the left, add 2 "Django Server". Call one DEBUG, call the other RUN.
- Add "DEBUG False" to RUN in its "Environment variables"
- Add "DEBUG True" to DEBUG in its "Environment variables" (make sure the port # is different from RUN!)
Change DEBUG = True in settings.py to the below code
Go back to the main IDE window and either select RUN or DEBUG and go to localhost/404 to either see the dev debug 404 or your custom 404.html (that you obviously previously made in the /templates/ folder ;)
1 | DEBUG = os.environ.get('DEBUG', False) == 'True'
|
More like this
- Form field with fixed value by roam 5 days, 12 hours ago
- New Snippet! by Antoliny0919 1 week, 4 days ago
- Add Toggle Switch Widget to Django Forms by OgliariNatan 3 months ago
- get_object_or_none by azwdevops 6 months, 3 weeks ago
- Mask sensitive data from logger by agusmakmun 8 months, 2 weeks ago
Comments
Please login first before commenting.