- Install project dependencies by running:
pipenv install --dev
- Run a postgres container for the application database:
docker run --name db-metrikgile -e POSTGRES_PASSWORD=root -p 5432:5432 -d postgres
- Access the virtual environment:
pipenv shell
- Already inside the virtual environment make the migrations:
./manage.py makemigrations
- Migrate the database:
./manage.py migrate
After complete the Setting Up steps, run the application with:
./manage.py runserver