CoolFace
Apppublic

tokyo-boy/inventory-backend

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
render.yaml28 linesDownload Raw Back to root
1databases:2  - name: inventory-db3    databaseName: inventory_db4    user: inventory_user5 6services:7  - type: web8    name: inventory-backend9    env: python10    rootDir: backend11    buildCommand: pip install -r requirements.txt && alembic upgrade head12    startCommand: uvicorn app.main:app --host 0.0.0.0 --port $PORT13    envVars:14      - key: APP_NAME15        value: Inventory Order Management API16      - key: DEBUG17        value: false18      - key: DATABASE_URL19        fromDatabase:20          name: inventory-db21          property: connectionString22      - key: LOW_STOCK_THRESHOLD23        value: 1024      - key: FRONTEND_URL25        sync: false26      - key: CORS_ORIGINS27        sync: false28