File tree Expand file tree Collapse file tree 3 files changed +42
-1
lines changed
Expand file tree Collapse file tree 3 files changed +42
-1
lines changed Original file line number Diff line number Diff line change 1+ # See https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/
2+
3+ name : Fly Deploy (Paused)
4+ on :
5+ push :
6+ branches :
7+ - main
8+ jobs :
9+ deploy :
10+ name : Deploy app
11+ runs-on : ubuntu-latest
12+ concurrency : deploy-group # optional: ensure only one action runs at a time
13+ steps :
14+ - uses : actions/checkout@v4
15+ # - uses: superfly/flyctl-actions/setup-flyctl@master
16+ # - run: flyctl deploy --remote-only
17+ # env:
18+ # FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
Original file line number Diff line number Diff line change 1- VITE_HYPERGRAPH_SYNC_SERVER_ORIGIN = " https://syncserver.hypergraph.thegraph.com"
1+ # VITE_HYPERGRAPH_SYNC_SERVER_ORIGIN="https://syncserver.hypergraph.thegraph.com"
2+ VITE_HYPERGRAPH_SYNC_SERVER_ORIGIN = " https://hypergraph.fly.dev"
23VITE_HYPERGRAPH_CHAIN = " geo-testnet"
34VITE_HYPERGRAPH_API_URL = " https://hypergraph-v2-testnet.up.railway.app/graphql"
45VITE_HYPERGRAPH_RPC_URL = " https://rpc-geo-test-zc16z3tcvf.t.conduit.xyz"
Original file line number Diff line number Diff line change 1+ # fly.toml app configuration file generated for hypergraph on 2025-06-27T09:23:00+02:00
2+ #
3+ # See https://fly.io/docs/reference/configuration/ for information about how to use this file.
4+ #
5+
6+ app = ' hypergraph'
7+ primary_region = ' fra'
8+
9+ [build ]
10+
11+ [http_service ]
12+ internal_port = 3030
13+ force_https = true
14+ auto_stop_machines = ' stop'
15+ auto_start_machines = true
16+ min_machines_running = 0
17+ processes = [' app' ]
18+
19+ [[vm ]]
20+ memory = ' 1gb'
21+ cpu_kind = ' shared'
22+ cpus = 1
You can’t perform that action at this time.
0 commit comments