Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 1.31 KB

README.md

File metadata and controls

33 lines (27 loc) · 1.31 KB

Fullstack auth posts

Apps Results
pre-commit pre-commit.ci status
coverage Coverage Status

Create project

  docker-compose up frontend --build
  docker-compose up postgres --build
  docker-compose up django --build

Run project

#   FULL
  docker-compose up
#   ONLY ONE PART
  docker-compose start django
  docker-compose start frontend
#   TO STOP
  docker-compose stop django
  docker-compose stop frontend

Run tests

  docker-compose run django python manage.py test