├── .gitignore ├── README.md ├── main.py ├── requirements.txt ├── static └── favicon.ico └── vercel.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdullahadeel/vercel-fastapi-deployment/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Deploy FastAPI backends on vercel 2 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdullahadeel/vercel-fastapi-deployment/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdullahadeel/vercel-fastapi-deployment/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdullahadeel/vercel-fastapi-deployment/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdullahadeel/vercel-fastapi-deployment/HEAD/vercel.json --------------------------------------------------------------------------------