-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example.dev
45 lines (36 loc) · 1.38 KB
/
.env.example.dev
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
# used in docker-compose
COMPOSE_PROJECT_NAME=data-availability
COMPOSE_FILE=scripts/dev/docker-compose.yaml
DB_PROXY_PORT=5432
SERVER_PROXY_PORT=8000
# used in pg
DB_NAME=db
DB_USER=db
DB_PASSWORD=secret
# used in django
DJANGO_SETTINGS_MODULE=project.settings.local
LOG_LEVEL=DEBUG
SECRET_KEY=secret
# these default to db and 5432 in django, uncomment if need to be changed
# DB_HOST=db
# DB_PORT=5432
# project related
# CONFIG_MODULE: one of: flare, songbird, coston2, coston
CONFIG_MODULE=flare
# rpc, for flare nodes usually ending with /ext/bc/C/rpc
RPC_URL=RPC_URL
# optionally uncomment below line to override default processing start height
# INDEXING_DEFAULT_HEIGHT=number
# optionally uncomment below line to override default processing sleep cycle
# INDEXING_SLEEP_CYCLE=number
# if you only want to use data availability for one protocol, comment out the other
# ftso providers: all three values are comma separated strings
# empty string is expected when there is no api key
FTSO_PROVIDER_LOGGING_NAMES=<> # FTSO provider logging names
FTSO_PROVIDER_URLS=<> # FTSO provider URL
FTSO_PROVIDER_API_KEYS=<> # FTSO provider api keys
# fdc providers: all three values are comma separated strings
# empty string is expected when there is no api key
FDC_PROVIDER_LOGGING_NAMES=<> # FTSO provider logging names
FDC_PROVIDER_URLS=<> # FTSO provider URL
FDC_PROVIDER_API_KEYS=<> # FTSO provider api keys