twitter-sentiment-app / vercel.json
vishnu-coder's picture
Fixed Vercel build config for Streamlit deployment
7483515
raw
history blame contribute delete
315 Bytes
{
"version": 2,
"builds": [
{
"src": "app.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "app.py"
}
],
"env": {
"STREAMLIT_SERVER_HEADLESS": "true",
"STREAMLIT_SERVER_ENABLECORS": "false",
"STREAMLIT_SERVER_PORT": "8000"
}
}