Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neoki07/render-fastapi-demo
https://github.com/neoki07/render-fastapi-demo
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/neoki07/render-fastapi-demo
- Owner: neoki07
- Created: 2022-05-09T13:54:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-10T13:41:43.000Z (over 2 years ago)
- Last Synced: 2024-06-15T17:15:32.663Z (5 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Deploy FastAPI on Render
Use this repo as a template to deploy a Python [FastAPI](https://fastapi.tiangolo.com) service on Render.
## Steps
1. You may use this repository directly or [create your own repository from this template](https://github.com/render-examples/fastapi/generate) if you'd like to customize the code.
2. Create a new Web Service on Render.
3. Specify the URL to your new repository or this repository.
4. Render will automatically detect that you are deploying a Python service and use `pip` to download the dependencies.
5. Specify the following as the Start Command.```shell
uvicorn main:app --host 0.0.0.0 --port 10000
```6. Click Create Web Service.
See https://render.com/docs/deploy-fastapi for more details.
## Thanks
Thanks to [Harish](https://harishgarg.com) for the [inspiration to create a FastAPI quickstart for Render](https://twitter.com/harishkgarg/status/1435084018677010434) and for some sample code!