- Install Docker. This link can be used.
- Create .env file and fill the next env variables:
APP_HOST = ''
APP_PORT = ''
POSTGRES_DB = ''
POSTGRES_USER = ''
POSTGRES_PASSWORD = ''
DJANGO_SECRET_KEY = ''
- Run to build Docker images
make build
- Run to start Docker containers
make up
- Run to stop Docker containers
make down
Check makefile for other usefull commands.