Django comes with a number of builtin management commands, using python manage.py [command] or, when manage.py has +x (executable) rights simply ./manage.py [command] .
The following are some of the most frequently used:
Get a list of all available commands
./manage.py help
Run your Django ser...