mirror of
https://github.com/vinta/awesome-python.git
synced 2026-08-04 15:05:39 +00:00
- render.yaml for one-click Render web service deploy - Fix PORT env var (Render sets $PORT, not $WEBHOOK_PORT) - Add farm-aggregator/.gitignore so .env stays local but .env.example commits - Commit .env.example so it's available after clone Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KBD2dN2KEjzz3UQFa9hEpu
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
services:
|
|
- type: web
|
|
name: farm-aggregator
|
|
runtime: node
|
|
rootDir: farm-aggregator
|
|
buildCommand: npm install
|
|
startCommand: node index.js
|
|
plan: starter
|
|
envVars:
|
|
- key: NODE_ENV
|
|
value: production
|
|
- key: ANTHROPIC_API_KEY
|
|
sync: false
|
|
- key: AGREFINE_API_URL
|
|
value: https://ag-refine.onrender.com/api
|
|
- key: AGREFINE_API_KEY
|
|
sync: false
|
|
- key: DROPBOX_APP_KEY
|
|
sync: false
|
|
- key: DROPBOX_APP_SECRET
|
|
sync: false
|
|
- key: DROPBOX_REFRESH_TOKEN
|
|
sync: false
|
|
- key: DROPBOX_INBOX_PATH
|
|
value: /Farm/Inbox
|
|
- key: DROPBOX_OUTBOX_PATH
|
|
value: /Farm/Summaries
|
|
- key: DROPBOX_DAIRYCOMP_PATH
|
|
value: /Farm/DairyComp
|
|
- key: DROPBOX_FEEDLYNC_PATH
|
|
value: /Farm/FeedLync
|
|
- key: WHATSAPP_ACCESS_TOKEN
|
|
sync: false
|
|
- key: WHATSAPP_PHONE_ID
|
|
sync: false
|
|
- key: WHATSAPP_RECIPIENT
|
|
sync: false
|
|
- key: TOMTOM_API_KEY
|
|
sync: false
|
|
- key: PULSE_SCHEDULE
|
|
value: "0 * * * *"
|
|
- key: DAILY_SCHEDULE
|
|
value: "0 6 * * *"
|
|
- key: WEEKLY_SCHEDULE
|
|
value: "0 6 * * 1"
|