- Facade to reduce Django command ceremony typing.
- In-line Django notes for quick reference.
- Install Docker
- The repository is configured to use devcontainers for development.
NB: substitute "my_project" and "my_app" with your actual names.
-
Create project
./create_project.sh my_project
-
Create app(s)
cd my_project./create_app.sh my_app
-
Apply all migrations to the project
python manage.py migrate
-
Run Program
./start_system_development.sh
The my_project project and my_app app have comments with prefix 'user added:'.
These comments explain how everything fits together.
Search for these in explorer.
example:
- NB: the master is locked and all changes must come through a Pull Request.
- commit messages:
- provide concise commit messages that describe what you have done.
# example: git commit -m "feat(core): algorithm" -m"implement my new shiny faster algorithm"
- screen shot of Githb view
- references:
- provide concise commit messages that describe what you have done.

