Create a project directory and install a python virtual environment inside it
mkdir project && cd project
python3 -m venv venv
source venv/bin/activateCreate a source dir and clone the repository
mkdir src && cd src
git clone https://github.com/thalesbruno/django_bootstrap .Install the dependencies
pip install -r requirements/local.txtRun the migrations and start the server!
python manage.py migrate
python manage.py runserverYay! App running in http://127.0.0.1:8000 :)