-
Notifications
You must be signed in to change notification settings - Fork 32
/
.env.example
83 lines (56 loc) · 2.07 KB
/
.env.example
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Since .env is gitignored, you can use .env.example to build a new `.env` file when you clone the repo.
# Keep this file up-to-date when you add new variables to \`.env\`.
# This file will be committed to version control, so make sure not to have any secrets in it.
# If you are cloning this repo, create a copy of this file named `.env` and populate it with your secrets.
# We use dotenv to load Prisma from Next.js' .env file
# @see https://www.prisma.io/docs/reference/database-reference/connection-urls
DATABASE_URL=postgresql://blobscan:s3cr3t@localhost:5432/blobscan_dev?schema=public
BLOBSCAN_WEB_TAG=next
BLOBSCAN_API_TAG=next
INDEXER_TAG=master
### blobscan website
EXTERNAL_WEB_PORT=3000
# BEE_ENDPOINT=
CHAIN_ID=1
NETWORK_NAME=mainnet
# GOOGLE_STORAGE_BUCKET_NAME=blobscan-test-bucket
# GOOGLE_STORAGE_PROJECT_ID=blobscan-test-project
# GOOGLE_SERVICE_KEY=
# GOOGLE_STORAGE_API_ENDPOINT=http://localhost:4443
BLOB_PROPAGATOR_ENABLED=false
GOOGLE_STORAGE_ENABLED=false
POSTGRES_STORAGE_ENABLED=true
SWARM_STORAGE_ENABLED=false
REDIS_URI=redis://localhost:6379
# PRISMA_BATCH_OPERATIONS_MAX_SIZE=
# FEEDBACK_WEBHOOK_URL=
# @see https://next-auth.js.org/configuration/options#nextauth_url
NEXTAUTH_URL=http://localhost:3000
# You can generate the secret via 'openssl rand -base64 32' on Unix
# @see https://next-auth.js.org/configuration/options#secret
SECRET_KEY=supersecret
NEXT_PUBLIC_NETWORK_NAME=mainnet
NEXT_PUBLIC_VERCEL_ANALYTICS_ENABLED=false
NEXT_PUBLIC_BEACON_BASE_URL=https://dora.ethpandaops.io/
NEXT_PUBLIC_EXPLORER_BASE_URL=https://etherscan.io/
#### rest api server
BLOBSCAN_API_PORT=3001
EXTERNAL_API_PORT=3001
# SENTRY_DSN_API=
#### blobscan indexer
SECRET_KEY=supersecret
BLOBSCAN_API_ENDPOINT=http://localhost:3001
BEACON_NODE_ENDPOINT=http://localhost:5052
EXECUTION_NODE_ENDPOINT=http://localhost:8545
RUST_LOG=blob-indexer=INFO
LOGGER=default
NODE_ENV=development
# SENTRY_DSN_INDEXER=
### telemetry
# METRICS_ENABLED=
# TRACES_ENABLED=
# OTLP_AUTH_USERNAME=
# OTLP_AUTH_PASSWORD=
# OTEL_EXPORTER_OTLP_PROTOCOL=
# OTEL_EXPORTER_OTLP_ENDPOINT=
# OTEL_DIAG_ENABLED=