Social Annotations in the Atmosphere
15
fork

Configure Feed

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

at main 30 lines 738 B view raw
1# fly.proxy.toml - Fly.io config for Seams Proxy (wabac.js-based) 2# Deploy with: ./deploy-proxy.sh 3app = 'sure-seams-so' 4primary_region = 'sjc' 5 6# Main service on port 8081 (static files) 7[http_service] 8 internal_port = 8081 9 force_https = true 10 auto_stop_machines = 'stop' 11 auto_start_machines = true 12 min_machines_running = 1 13 processes = ['app'] 14 15# Also expose CORS proxy on port 8082 16[[services]] 17 internal_port = 8082 18 protocol = "tcp" 19 [[services.ports]] 20 handlers = ["tls", "http"] 21 port = 8082 22 23[[vm]] 24 memory = '512mb' 25 cpu_kind = 'shared' 26 cpus = 1 27 28[env] 29 # Production domains - include both the fly.dev domain and custom domain 30 CORS_ALLOWED_ORIGINS = "https://sure.seams.so,https://sure-seams-so.fly.dev"