docs: add rough documentation about obs-portal
Flake checks / Check (pull_request) Successful in 6m2s Details

pull/173/head
Hendrik Sokolowski 2024-04-28 01:23:42 +02:00
parent 10c86c6b20
commit 75c7e2dcf5
Signed by: hensoko
GPG Key ID: 5C36A01B80BCCC59
1 changed files with 25 additions and 0 deletions

25
docs/obs-portal.md Normal file
View File

@ -0,0 +1,25 @@
# OpenBikeSensor Portal
## Docker Containers
* portal
* worker
* db
## Run database migrations
```
docker exec -ti obs-portal tools/upgrade.py
```
## Dump database
```
docker exec -ti --user postgres obs-portal-db pg_dump obs
```
## Restore database
```
cat dump.sql | docker exec -ti --user postgres obs-portal-db psql obs
```