-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathexample.env
32 lines (25 loc) · 1.02 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
# Local development environment variables
#
# Copy this file to .env (which is added to .gitignore so you can make local-only changes)
# Changing the values in this file will change the configuration that is used when running this solution locally
# Local sandbox config
ALGOD_SERVER=http://localhost:4001
ALGOD_TOKEN=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
KMD_PORT=4002
INDEXER_SERVER=http://localhost:8980
INDEXER_TOKEN=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
#
# TestNet config
# Minting creator account (non-local)
#CREATOR_MNEMONIC={token}
# Dispenser account (non-local)
#DISPENSER_MNEMONIC={token}
# AlgoNode - https://algonode.io/api/
# Useful service to target testnet and mainnet without having to run our own node
# You'll need to fund the CREATOR_MNEMONIC and DISPENSER_MNEMONIC accounts via a TestNet dispenser
#ALGOD_TOKEN=
#ALGOD_SERVER=https://testnet-api.algonode.cloud/
#ALGOD_PORT=443
#INDEXER_TOKEN=
#INDEXER_SERVER=https://testnet-idx.algonode.cloud/
#INDEXER_PORT=443