https://github.com/hacksoftware/qa-workshop
https://github.com/hacksoftware/qa-workshop
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hacksoftware/qa-workshop
- Owner: HackSoftware
- Created: 2024-10-24T11:12:14.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-29T08:20:37.000Z (12 months ago)
- Last Synced: 2025-04-08T19:55:15.925Z (10 months ago)
- Language: Python
- Size: 21.5 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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
```