-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
15 lines (13 loc) · 759 Bytes
/
Copy path.env.example
File metadata and controls
15 lines (13 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
DB_HOST=localhost
DB_PORT_TYPEORM=5432
DB_PORT_MIKROORM=5433
# DB_USERNAME=postgres # postgres is the username required for root admin functions e.g. to delete a database
# for now the same DB_USERNAME and DB_PASSWORD is used for both DBs
DB_USERNAME=admin
DB_PASSWORD=password
DB_NAME_TYPEORM=super_processor # 2 separate postgres DBs are started, one for only typeorm entities and the other for mikro-orm entities
DB_NAME_MIKROORM=super_processor
# Alternative: instead of using config.yaml use internal config with the following:
CHAIN_ID=2 # Aptos testnet chainId
GRPC_API_KEY_{chainId}="aptoslabs_123abc" # e.g. GRPC_API_KEY_2 for Aptos testnet, etc
GENESIS_VERSION_{chainId}={starting_version for chain} # e.g. GENESIS_VERSION_2 for Aptos testnet, etc