-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.sample
42 lines (37 loc) · 1.42 KB
/
.env.sample
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
34
35
36
37
38
39
40
41
42
# allowed values (development, production, test)
ENV=
# Postgres
POSTGRES_VERSION=16-alpine
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=postgres
# Pgadmin4
# NOTE: if you modify POSTGRES_USER/PASSWORD/DB then auto-imported server will not match and you need to setup
# your own with the modified values on the pgadmin website after first login.
PGADMIN_VERSION=8.11
PGADMIN_DEFAULT_PASSWORD=admin
PGADMIN_LISTEN_PORT=5050
# for development purposes is better reduce the amount of workers due to the number of logs that many
# workers will produce, so if you will or need to move faster, you can safely increase this number to
# any number that match with the number of CPUs
WORKERS=1
BATCH_SIZE=10
DB_SCHEMA=app
START_BLOCK=1
CHAIN_ID=poktroll
# LocalNet
# ENDPOINT=http://proxy:26657
# Testnet
ENDPOINT=https://testnet-validated-validator-rpc.poktroll.com
# Check docs to see what else you can set here:
# Ref: https://academy.subquery.network/indexer/run_publish/references.html#subql-cli
SUBQUERY_NODE_EXTRA_PARAMS="--unfinalized-blocks=true"
# Check docs to see what else you can set here:
# Ref: https://academy.subquery.network/indexer/run_publish/references.html#subql-query
SUBQUERY_GRAPHQL_EXTRA_PARAMS=
# Subquery Graphql Engine
SUBQUERY_GRAPHQL_ENGINE_VERSION=latest
SUBQUERY_GRAPHQL_ENGINE_PORT=3000
# Genesis filename located at /genesis folder
GENESIS_FILENAME=testnet.json