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 9b81da1 commit fc02837Copy full SHA for fc02837
README.md
@@ -46,13 +46,24 @@ This example shows how to use FastApi 0.88.0 on Vercel with Serverless Functions
46
47
This example uses the Web Server Gateway Interface (WSGI) with Flask to enable handling requests on Vercel with Serverless Functions.
48
49
+## Install dependencies
50
+
51
+```bash
52
+pip install -r requirements.txt
53
+```
54
55
## Running Locally
56
57
```bash
58
npm i -g vercel
59
vercel dev
60
```
61
62
+or
63
64
65
+uvicorn main:app --host 0.0.0.0 --port 4000
66
67
Your Flask application is now available at `http://localhost:3000`.
68
69
## One-Click Deploy
0 commit comments