Spaces:
Sleeping
Sleeping
File size: 625 Bytes
f2276c1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | {
"name": "vocal-guard",
"displayName": "Vocal Guard — Deepfake Audio Detector",
"version": "1.0.0",
"runtime": "python3.11",
"entrypoint": "backend/app.py",
"port": 8000,
"build": {
"commands": [
"pip install -r requirements.txt"
]
},
"start": {
"command": "uvicorn backend.app:app --host 0.0.0.0 --port 8000"
},
"aws": {
"region": "ap-south-1",
"services": {
"compute": "elastic-beanstalk",
"platform": "Python 3.11",
"tier": "WebServer",
"instanceType": "t3.small"
}
},
"environment": {
"PORT": "8000"
},
"healthCheck": "/health"
}
|