Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hacksoftware/qa-workshop


https://github.com/hacksoftware/qa-workshop

Last synced: about 1 month ago
JSON representation

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
```