Create a project directory and install a python virtual environment inside it
mkdir project && cd project
python3 -m venv venv
source venv/bin/activate
Create 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.txt
Run the migrations and start the server!
python manage.py migrate
python manage.py runserver
Yay! App running in http://127.0.0.1:8000
:)