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 c8cfd9f commit f875e6aCopy full SHA for f875e6a
README.md
@@ -55,15 +55,20 @@ pip install -r requirements.txt
55
## Running Locally
56
57
```bash
58
-npm i -g vercel
59
-vercel dev
+# Build the Docker image
+docker build -t deploy-python-fastapi-in-vercel .
60
+
61
+# Run the Docker container
62
+docker run -p 8000:8000 deploy-python-fastapi-in-vercel
63
64
```
65
-or
66
+or
67
68
69
uvicorn main:app --host 0.0.0.0 --port 8000
70
71
72
Your FastApi application is now available at `http://localhost:8000`.
73
74
## One-Click Deploy
@@ -90,4 +95,3 @@ Or buy me a coffee 🙌🏾
90
95
91
96
Copyright © 2023 [Hebert F Barros](https://github.com/hebertcisco).<br />
92
97
This project is [MIT](LICENSE) licensed.
93
-
0 commit comments