-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path.example.env
60 lines (42 loc) · 1.71 KB
/
.example.env
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
51
52
53
54
55
56
57
58
59
60
# ====================
# Server Configuration
# ====================
# PORT (Required): The port on which the server should run
PORT=
# AUTHORIZATION (Required): The server authorization string
AUTHORIZATION=
# ====================
# Logger Configuration
# ====================
# DATADOG_APP_NAME (Optional): The name of the Datadog app for sending internal logs
#DATADOG_APP_NAME=
# DATADOG_API_KEY (Optional): The API key for the above Datadog app
#DATADOG_API_KEY=
# ========================
# Database Configuration
# ========================
# DATABASE_URL (Required): The URL of the Postgres database
DATABASE_URL=
# REDIS_URL (Required): Redis URL for storing the active queues and backups
REDIS_URL=
# ====================
# Syncer Configuration
# ====================
# CHAIN (Required): The chain to sync. Supported chains: 'mainnet', 'goerli', 'sepolia', 'polygon', 'arbitrum' 'optimism', 'mumbai'
CHAIN=
# API_KEY (Required): Reservoir API key. Sign up for free at https://reservoir.tools/
API_KEY=
# SYNC_SALES (Optional): Enable syncing/backfilling of sales (1 = TRUE, 0 = FALSE)
SYNC_SALES=
# SYNC_ASKS (Optional): Enable syncing/backfilling of asks (1 = TRUE, 0 = FALSE)
SYNC_ASKS=
# SYNC_TRANSFERS (Required): Enable syncing/backfilling of transfers (1 = TRUE, 0 = FALSE)
SYNC_TRANSFERS=
# SYNC_BIDS (Required): Enable syncing/backfilling of bids (1 = TRUE, 0 = FALSE)
SYNC_BIDS=
# SOURCES (Optional): Sources to filter by, separated by commas. Only records from these sources will be indexed.
SOURCES=
# MODE (Required): Speed of the SyncNode. Options: 'slow', 'normal', 'fast'
MODE=
# USE_BACKUP (Optional): Enable usage of the backup stored in Redis (1 = TRUE, 0 = FALSE). If 0, the backup is flushed.
USE_BACKUP=