https://github.com/bydmiller/amber-fastapi-render
GitHub repo for FastAPI integration with Amber PyTorch models, deployed effortlessly with Render
https://github.com/bydmiller/amber-fastapi-render
Last synced: 2 months ago
JSON representation
GitHub repo for FastAPI integration with Amber PyTorch models, deployed effortlessly with Render
- Host: GitHub
- URL: https://github.com/bydmiller/amber-fastapi-render
- Owner: bydmiller
- License: mit
- Created: 2024-03-30T06:03:38.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-30T16:58:15.000Z (over 1 year ago)
- Last Synced: 2025-07-29T03:48:18.274Z (2 months ago)
- Language: Python
- Homepage: https://amber-fastapi-render.vercel.app
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.
See https://render.com/docs/deploy-fastapi or follow the steps below:
## Manual 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 $PORT
```6. Click Create Web Service.
Or simply click:
[](https://render.com/deploy?repo=https://github.com/render-examples/fastapi)
## 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!