Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 482 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 482 Bytes

QA Workshop Sample Project

This is just a simple Django admin made for automation test purposes.

The system is hosted here: https://automation-workshop.hacksoft.io/admin/

How to start the project locally

docker compose build
docker compose run web python manage.py migrate
docker compose up

How to create a user

docker compose run web python manage.py createsuperuser

How to flush the database

docker compose run web python manage.py flush