forked from Joystream/joystream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
50 lines (38 loc) · 1.31 KB
/
.env
File metadata and controls
50 lines (38 loc) · 1.31 KB
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
43
44
45
46
47
48
49
50
COMPOSE_PROJECT_NAME=joystream
PROJECT_NAME=query_node
# We will use a single postgres service with multiple databases
INDEXER_DB_NAME=query_node_indexer
PROCESSOR_DB_NAME=query_node_processor
DB_USER=postgres
DB_PASS=postgres
DB_HOST=localhost
DB_PORT=5432
DEBUG=index-builder:*
TYPEORM_LOGGING=error
###########################
# Indexer options #
###########################
# Substrate endpoint to source events from
WS_PROVIDER_ENDPOINT_URI=ws://localhost:9944/
# Block height to start indexing from.
# Note, that if there are already some indexed events, this setting is ignored
BLOCK_HEIGHT=0
# Redis cache server
REDIS_URI=redis://localhost:6379/0
###########################
# Processor options #
###########################
# Where the mapping scripts are located, relative to ./generated/indexer
TYPES_JSON=../../../types/augment/all/defs.json
# Indexer GraphQL API endpoint to fetch indexed events
INDEXER_ENDPOINT_URL=http://localhost:4000/graphql
# Block height from which the processor starts. Note that if
# there are already processed events in the database, this setting is ignored
BLOCK_HEIGHT=0
###############################
# Processor GraphQL API #
###############################
GRAPHQL_SERVER_PORT=4002
GRAPHQL_SERVER_HOST=localhost
WARTHOG_APP_PORT=4002
WARTHOG_APP_HOST=localhost