system-pri/README.md
2022-12-16 06:50:55 +01:00

24 lines
416 B
Markdown

# System-pri
System organizacji PRI
## Usage
First create `.env` files in `./backend` and `./frontend` and fill with similar data like `.env.example`.
Run application and init database
```bash
docker-compose up -d --build
docker-compose exec backend flask db upgrade
docker-compose exec backend flask init_db
```
Turn off application
```bash
docker-compose down
```
Show logs
```bash
docker-compose logs -f
```