We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e45e42e commit ac7c6a4Copy full SHA for ac7c6a4
README.md
@@ -33,6 +33,21 @@ poetry shell
33
34
## Usage
35
36
+This example uses [PostgreSQL](https://www.postgresql.org/) as the database. If
37
+you dont have a local PostgreSQL database running, you can start one with
38
+[Docker](https://www.docker.com) using the following command:
39
+
40
+```bash
41
+docker exec -it postgres psql -U postgres
42
+```
43
44
+This will run a PostgreSQL database in a Docker container in the background.
45
+When you are finished and want to stop the database, run:
46
47
48
+docker stop postgres
49
50
51
Run the server using `Uvicorn`:
52
53
```bash
0 commit comments