fix: misspelling in pgweb env var

This commit is contained in:
Julian Lobbes 2023-06-14 11:26:43 +02:00
parent 18224689bd
commit 84fc5e1977
2 changed files with 8 additions and 2 deletions

View File

@ -39,7 +39,13 @@ as well as an [API reference guide](https://developer.withings.com/api-reference
# Development
Run [alembic](https://alembic.sqlalchemy.org/en/latest/) migrations inside the container like so:
To start the development compose-stack, run the following command:
```bash
sudo docker-compose -f development.docker-compose.yml up --force-recreate --build --remove-orphans
```
Run [alembic](https://alembic.sqlalchemy.org/en/latest/) database migrations inside the running container like so:
```bash
sudo docker exec -w /app/backend/database -it backend alembic upgrade head

View File

@ -85,6 +85,6 @@ services:
ports:
- "8001:8081"
environment:
DATABSE_URL: "postgres://medwings:medwings@db:5432/medwings?sslmode=disable"
DATABASE_URL: "postgres://medwings:medwings@db:5432/medwings?sslmode=disable"
...