Files
agentic_security/vercel.json
T
2024-04-26 13:58:25 +03:00

16 lines
326 B
JSON

{
"devCommand": "uvicorn agentic_security.app:app --host 0.0.0.0 --port 3000",
"builds": [
{
"src": "agentic_security/app.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "agentic_security/app.py"
}
]
}