-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
30 lines (30 loc) · 1.13 KB
/
Copy pathrender.yaml
File metadata and controls
30 lines (30 loc) · 1.13 KB
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
# Render Blueprint — AjoAI autonomous agent as an always-on background worker.
# Deploy: push this repo, then New → Blueprint in Render and point it here.
# Set the secret AGENT_PRIVATE_KEY_MAINNET in the dashboard (sync:false keeps it out of git).
services:
- type: worker
name: ajoai-agent
runtime: docker
dockerfilePath: ./agent/Dockerfile
dockerContext: .
plan: starter
autoDeploy: true
envVars:
- key: CHAIN
value: mainnet
- key: RPC_URL
value: https://forno.celo.org
- key: AGENT_PRIVATE_KEY_MAINNET
sync: false # set in dashboard — the hosted agent's mainnet key (separate from dev)
- key: FEE_CURRENCY
value: USDm
- key: SIMULATE_YIELD
value: "true"
- key: SIMULATE_SELF
value: "false"
- key: LOG_LEVEL
value: info
- key: AJOAI_DEMO_ROTATION_HOURS
value: "1" # Run a full autonomous demo rotation every hour for on-chain activity
# NOTE: the live deployment runs on Railway (this Render blueprint is an alt-host doc);
# keep this in sync with the Railway AJOAI_DEMO_ROTATION_HOURS value.