
Deploy your Starlette project to Vercel with zero configuration.
Live Example: https://vercel-plus-starlette.vercel.app/
Visit the Starlette documentation to learn more.
Install the required dependencies:
python -m venv .venvsource .venv/bin/activatepip install .Or, if using uv:
uv syncStart the development server on http://0.0.0.0:5001
python main.py# using uv:uv run main.pyWhen you make changes to your project, the server will automatically reload.
Deploy your project to Vercel with the following command:
npm install -g vercelvercel --prodOr git push to your repository with our git integration.
To view the source code for this template, visit the example repository.