Skip to content

Commit 7c42ac6

Browse files
authored
env: add required and optional info (#102)
1 parent aff93ba commit 7c42ac6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.env.example

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WALLET
1+
# WALLET [Required]
22
# ------
33
# Either a private key
44
WALLET_PRIVATE_KEY=<your_admin_wallet_private_key>
@@ -8,13 +8,13 @@ AWS_SECRET_ACCESS_KEY=<your_aws_secret_access_key>
88
AWS_KMS_KEY_ID=<your_aws_kms_key_id>
99
AWS_REGION=<your_aws_region>
1010

11-
# THIRDWEB SDK SECRET KEY
11+
# THIRDWEB SDK SECRET KEY [Required]
1212
# -----------------------
1313
# Obtain an Secret Key from thirdweb.com/dashboard
1414
# this enables you to use the default RPCs and extra features
1515
THIRDWEB_SDK_SECRET_KEY=<your_thirdweb_sdk_secret_key>
1616

17-
# DATABASE OPTIONS
17+
# DATABASE OPTIONS [Required]
1818
# ----------------
1919
POSTGRES_HOST=localhost
2020
POSTGRES_DATABASE_NAME=postgres
@@ -23,13 +23,13 @@ POSTGRES_PASSWORD=postgres
2323
POSTGRES_PORT=5432
2424
POSTGRES_USE_SSL=false
2525

26-
# SERVING OPTIONS
26+
# SERVING OPTIONS [Optional]
2727
# ---------------
2828
PORT=3005
2929
HOST=localhost
3030
OPENAPI_BASE_ORIGIN=http://localhost:3005
3131

32-
# CONFIGURATION OPTIONS
32+
# CONFIGURATION OPTIONS [Optional]
3333
# ----------------------
3434
# the number of transactions to queue for before starting processing
3535
MIN_TRANSACTION_TO_PROCESS=1
@@ -40,7 +40,7 @@ TRANSACTIONS_TO_BATCH=10
4040
# See example config file: chain-overrides.example.json
4141
CHAIN_OVERRIDES=<path_or_url_to_file>
4242

43-
# CORS OPTIONS
43+
# CORS OPTIONS [Optional]
4444
# ------------
4545
# Configures the Access-Control-Allow-Origin CORS header. Defaults to * (Allow All)
4646
# The value of origin could be of different types:
@@ -55,7 +55,7 @@ CHAIN_OVERRIDES=<path_or_url_to_file>
5555
ACCESS_CONTROL_ALLOW_ORIGIN=*
5656

5757

58-
# benchmark vars
58+
# benchmark vars [Optional]
5959
BENCHMARK_HOST='http://localhost:3005'
6060
BENCHMARK_URL_PATH='/contract/mumbai/0xc8be6265C06aC376876b4F62670adB3c4d72EABA/write'
6161
BENCHMARK_POST_BODY='{

0 commit comments

Comments
 (0)