This repository is a boilerplate Django project for quickly getting started.
- Python v3.9.2, install it on your local machine
$ cd <project-repo-folder>
$ python -m venv /path/to/new/virtual/environment- for project dependencies install according to the requirements.txt file, more on the installation of the requirements here
$ pip install -r requirements.txt --no-index --find-links file:///tmp/packages- Docker & Docker-compose for local dev environment. official guide and this cheatsheet
- The Bubbling Docker compose repo can be used in order to spin up the infrastructure for local dev
$ cd <docker-repo-folder>
$ docker-compose up- Firebase app
- Django dotenv and split settings
- PostgresDB setup (default db)
- Authentication (Firebase) AND REQUIRES connection with Common(user_operator) project
- Swagger setup
- PEP8 git hooks for formatting
- Basic healthchecks app for project and db
- The 'core' app that includes the rename command
python manage.py rename <yourprojectname> <newprojectname>