Flask App on Vercel

How to deploy a Python/Flask App to Vercel - DEV Community

npm i -g vercel
mkdir vercel-python-app
cd vercel-python-app
python3 -m venv .venv
.venv/bin/activate
pip install Flask
set FLASK_APP=index.py
set FLASK_ENV=development
flask run

Test Page

For Deploy to Vercel:

  • Add vercel.json
  • Add requirements.txt

Step-by-Step Guide to Deploying a Project to Vercel using GitHub Actions for Free - DEV Community

  • Publish to GitHub
  • Vercel - Add New.. - Project
  • vercel-python-app - Import Project
  • Framework Preset: Other
  • Deploy
  • Continue to Dashboard
  • Test Page