Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hacksoftware/qa-workshop
https://github.com/hacksoftware/qa-workshop
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/hacksoftware/qa-workshop
- Owner: HackSoftware
- Created: 2024-10-24T11:12:14.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2024-10-25T05:44:51.000Z (2 months ago)
- Last Synced: 2024-10-25T12:50:33.995Z (about 2 months ago)
- Language: Python
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- 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
```