[Django] manage.py usage
Nov 8, 2021
python manage.py runserver ––noreload
- When using python manage.py runserver, Django start two processes. One for the actual development server and the other to reload your application when the code change.
python manage.py check — database default
- It could check your database connection, and raise exception if there have any problems.
- You could change the default according to your database definition.