Skip to content

Instantly share code, notes, and snippets.

@jayhale
Created April 30, 2021 23:19
Show Gist options
  • Save jayhale/bcf3c4d61960c15db00fc81b1482ee1e to your computer and use it in GitHub Desktop.
Save jayhale/bcf3c4d61960c15db00fc81b1482ee1e to your computer and use it in GitHub Desktop.
// vercel-django-example/vercel.json
// https://github.com/jayhale/vercel-django-example/blob/main/vercel.json#L1
{
"builds": [{
"src": "vercel_app/wsgi.py",
"use": "@ardnt/vercel-python-wsgi",
"config": { "maxLambdaSize": "15mb" }
}],
"routes": [
{
"src": "/(.*)",
"dest": "vercel_app/wsgi.py"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment