From d573abbbf0b33031a492f1ff261ddd3dd5e4b163 Mon Sep 17 00:00:00 2001 From: MarkLo Date: Fri, 21 Nov 2025 09:27:03 +0800 Subject: [PATCH] --- render.yaml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 render.yaml diff --git a/render.yaml b/render.yaml deleted file mode 100644 index d60be178..00000000 --- a/render.yaml +++ /dev/null @@ -1,36 +0,0 @@ -services: - # Backend API Service - - type: web - name: tradingagents-backend - runtime: python - region: singapore - plan: free - buildCommand: pip install -r requirements.txt - startCommand: uvicorn app.main:app --host 0.0.0.0 --port $PORT - envVars: - - key: PYTHON_VERSION - value: 3.13.0 - - key: OPENAI_API_KEY - sync: false - - key: ALPHA_VANTAGE_API_KEY - sync: false - - key: TRADINGAGENTS_RESULTS_DIR - value: /opt/render/project/src/results - healthCheckPath: /health - rootDir: backend - - # Frontend Web Service - - type: web - name: tradingagents-frontend - runtime: node - region: singapore - plan: free - buildCommand: npm install && npm run build - startCommand: npm start - envVars: - - key: NEXT_PUBLIC_API_URL - value: https://tradingagents-backend.onrender.com - - key: NODE_ENV - value: production - healthCheckPath: / - rootDir: frontend