-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.yaml
More file actions
33 lines (32 loc) · 1023 Bytes
/
Copy pathrender.yaml
File metadata and controls
33 lines (32 loc) · 1023 Bytes
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
31
32
33
# HYDRA Autonomous Intelligence Engine — Render Blueprint
# https://render.com/docs/blueprint-spec
#
# Deploy: connect this repo to Render and it will auto-detect this file.
# Auto-deploys on every push to master branch.
#
# Wallet: 0x2F12A73e1e08F3BCE12212005cCaBE2ACEf87141
# Chain: Base (8453)
# Token: USDC
# API: https://hydra-api-nlnj.onrender.com
services:
- type: web
name: hydra-api
runtime: python
plan: free
buildCommand: pip install -r requirements.txt
startCommand: uvicorn src.main:app --host 0.0.0.0 --port $PORT
healthCheckPath: /health
autoDeploy: true
envVars:
- key: PORT
value: 8402
- key: WALLET_ADDRESS
value: "0x2F12A73e1e08F3BCE12212005cCaBE2ACEf87141"
- key: BASE_RPC_URL
value: "https://mainnet.base.org"
- key: HYDRA_STATE_DIR
value: /tmp/hydra-data
- key: WALLET_PRIVATE_KEY
sync: false # Must be set manually in Render dashboard
- key: PYTHON_VERSION
value: "3.11.6"