File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 3
3
## Installation
4
4
5
5
Clone [ this repository] [ repo ] {: target ="_ blank"} and install the
6
- dependencies. This project uses [ Poetry ] [ poetry ] {: target ="_ blank"} for
6
+ dependencies. This project uses [ uv ] [ uv ] {: target ="_ blank"} for
7
7
dependency management which should be installed on your system first.
8
8
9
9
Install the dependencies:
10
10
11
11
``` console
12
- poetry install
12
+ uv sync
13
13
```
14
14
15
15
Then switch to the virtual environment:
16
16
17
17
``` console
18
- poetry shell
18
+ # On Linux:
19
+ source .venv/bin/activate
20
+
21
+ # On Windows:
22
+ .venv\Scripts\activate
19
23
```
20
24
21
25
## Usage
@@ -89,7 +93,7 @@ SQLite database.
89
93
DATABASE_URL = " sqlite+aiosqlite:///./test.db"
90
94
```
91
95
92
- [ poetry ] : https://python-poetry.org /
96
+ [ uv ] : https://docs.astral.sh/uv /
93
97
[ postgres ] :https://www.postgresql.org/
94
98
[ docker ] :https://www.docker.com/
95
99
[ sqlite ] :https://www.sqlite.org/
You can’t perform that action at this time.
0 commit comments