Files
agentic_security/vercel.json
T
Alexander Myasoedov 15106c1c23 feat(Init):
2024-04-13 18:04:24 +03:00

16 lines
299 B
JSON

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