File size: 471 Bytes
2159212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
services:
  - type: web
    name: t2av-eval-api
    runtime: python
    rootDir: backend
    plan: free
    buildCommand: pip install -r requirements.txt
    startCommand: uvicorn main:app --host 0.0.0.0 --port $PORT
    healthCheckPath: /health
    envVars:
      - key: DATABASE_URL
        fromDatabase:
          name: t2av-eval-db
          property: connectionString

databases:
  - name: t2av-eval-db
    plan: free
    databaseName: t2av_eval
    user: t2av_eval