We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0195cfc commit 1417980Copy full SHA for 1417980
1 file changed
README.md
@@ -22,14 +22,14 @@ cd microformats-python-parser-website
22
Next, install the required dependencies:
23
24
```
25
-pip3 install -r requirements.txt
+uv sync
26
27
28
Next, start the server. You can do this in either debugging mode (where `debug=True`) in Flask or in production mode using Gunicorn.
29
30
31
-python3 app.py --debug (debug mode)
32
-gunicorn --bind localhost:8080 app:app (production mode)
+uv run -- app.py --debug (debug mode)
+uv run -- gunicorn --bind localhost:8080 app:app (production mode)
33
34
35
You can view your running local application at this URL:
0 commit comments