Skip to content
This repository was archived by the owner on Mar 10, 2026. It is now read-only.

Commit 7983fff

Browse files
committed
update README
1 parent 5518d6a commit 7983fff

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,17 @@ docker run -p 6379:6379 -p 3000:3000 -it --rm falkordb/falkordb:latest
2222

2323
Create your own `.env` file from the `.env.template` file
2424

25+
### Install dependencies
26+
27+
Install project dependencies:
28+
29+
```bash
30+
uv sync
31+
```
32+
2533
Start the server:
2634
```bash
27-
flask --app api/index.py run --debug
35+
uv run flask --app api/index.py run --debug
2836
```
2937

3038
### Creating a graph

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ test = [
2626
"pytest>=9.0.2,<10.0.0",
2727
]
2828

29-
[tool.setuptools]
30-
packages = []
29+
[tool.setuptools.packages.find]
30+
where = ["."]

0 commit comments

Comments
 (0)