-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy path.env.sample
40 lines (35 loc) · 1013 Bytes
/
.env.sample
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
# ESCROW_SEED='...'
# AUCTION_SEED='...'
# CONTRACT_ETH_OWNER_SEED='...'
# CONTRACT_ADDRESS='...'
# UNIQUE_COLLECTION_IDS='1,2'
MARKET_VERSION='latest'
# Market type configuration
MARKET_TYPE='secondary'
# MAINSALE_SEED=''
# ADMIN_LIST=''
# Backend envs
API_PORT='5000'
DISABLE_SECURITY='false'
UNIQUE_WS_ENDPOINT='wss://ws-quartz.unique.network'
KUSAMA_WS_ENDPOINT='wss://kusama-rpc.polkadot.io'
UNIQUE_NETWORK='quartz'
KUSAMA_NETWORK='ksm'
COMMISSION_PERCENT='10'
UNIQUE_START_FROM_BLOCK='current'
KUSAMA_START_FROM_BLOCK='current'
AUTO_DB_MIGRATIONS='true'
SENTRY_ENABLED='false'
# SENTRY_ENV: production
# SENTRY_DSN: https://[email protected]/sentryId
# Frontend envs
IPFS_GATEWAY=https://ipfs.unique.network/ipfs
DOCUMENT_TITLE='Unique Market'
UNIQUE_API_URL='/'
# Postgres envs
POSTGRES_URL='postgres://marketplace:12345@postgres:5432/marketplace_db'
POSTGRES_DB='marketplace_db'
POSTGRES_USER='marketplace'
POSTGRES_PASSWORD='12345'
POSTGRES_PORT='5432'
POSTGRES_INITDB_ARGS='--auth-local=trust'