We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0195cfc commit 8d29eaeCopy full SHA for 8d29eae
README.md
@@ -22,14 +22,15 @@ 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)
+uv run -- app.py --debug (debug mode)
32
gunicorn --bind localhost:8080 app:app (production mode)
33
+uv run -- gunicorn --bind localhost:8080 app:app (production mode)
34
35
36
You can view your running local application at this URL:
0 commit comments