This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / fly.development.toml
584 B 34 lines
1app = 'semble-development' 2primary_region = 'yyz' 3 4[build] 5 6[processes] 7 web = "npm start" 8 feed-worker = "npm run worker:feeds" 9 10[http_service] 11 internal_port = 3000 12 force_https = true 13 auto_stop_machines = 'stop' 14 auto_start_machines = true 15 min_machines_running = 0 16 processes = ['web'] 17 18[[vm]] 19 memory = '512mb' 20 cpu_kind = 'shared' 21 cpus = 1 22 23[[vm]] 24 processes = ['feed-worker'] 25 memory = '256mb' 26 cpu_kind = 'shared' 27 cpus = 1 28 29[env] 30NODE_ENV="dev" 31BASE_URL="https://api.dev.semble.so" 32HOST="0.0.0.0" 33APP_URL="https://dev.semble.so" 34USE_IN_MEMORY_EVENTS="false"