This repository is a boilerplate code that allows you to quickly start the development.
In order to create a new Django project, follow the steps:
- Clone the repository
- Create a virtual environment using
virtualenv venv
and install all dependencies withpip3 install -r requirements.txt
- Change variables located in .env file (SECRET_KEY, database configuration later on)
- Rename the project with
python3 manage.py rename boilerplate <new_project_name>