From d0b8b4a10cbc592e61a2be405a413bb383b8a7cc Mon Sep 17 00:00:00 2001 From: Jacob Peddicord Date: Tue, 31 May 2022 10:22:57 -0400 Subject: [PATCH] add fly toml --- fly.toml | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 fly.toml diff --git a/fly.toml b/fly.toml new file mode 100644 index 00000000000..1bb021b2568 --- /dev/null +++ b/fly.toml @@ -0,0 +1,45 @@ +# fly.toml file generated for precrypt on 2022-02-07T15:24:35-05:00 + +app = "rwtp-graph-node" + +kill_signal = "SIGINT" +kill_timeout = 5 +processes = [] + +[build] + image="graphprotocol/graph-node:latest" + +[env] + postgres_host="subgraph-pg.internal" + postgres_port=5432 + postgres_user="app" + postgres_db="rinkeby" + ipfs="rwtp-ipfs.internal:5001" + ethereum="rinkeby:https://rinkeby.infura.io/v3/ea07de956656482f818e0af2d688726d" + GRAPH_ALLOW_NON_DETERMINISTIC_IPFS=1 + GRAPH_ALLOW_NON_DETERMINISTIC_FULLTEXT_SEARCH=1 + +[[services]] + internal_port = 8000 + protocol = "tcp" + + [[services.ports]] + port = "80" + + [[services.ports]] + handlers = ["tls", "http"] + port = "443" + +[[services]] + internal_port = 8020 + protocol = "tcp" + + [[services.ports]] + port = "8020" + +[[services]] + internal_port = 8030 + protocol = "tcp" + + [[services.ports]] + port = "8030" \ No newline at end of file