Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 527 Bytes

File metadata and controls

29 lines (26 loc) · 527 Bytes

How to run

Installation

  1. Install Docker. This link can be used.
  2. Create .env file and fill the next env variables:
APP_HOST = ''
APP_PORT = ''

POSTGRES_DB = ''
POSTGRES_USER = ''
POSTGRES_PASSWORD = ''

DJANGO_SECRET_KEY = ''

Starting

  1. Run to build Docker images
make build
  1. Run to start Docker containers
make up
  1. Run to stop Docker containers
make down

Check makefile for other usefull commands.