forked from Calvario/gbc-explorer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
51 lines (44 loc) · 1.12 KB
/
.env.example
File metadata and controls
51 lines (44 loc) · 1.12 KB
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
# General
APP_TITLE = VRM Explorer
APP_FE_PORT = 3000
APP_API_PORT = 3001
# COIN
COIN_NAME = Verium
COIN_SYMBOL = VRM
COIN_CONFIRMATIONS = 10
# PoW or PoST
COIN_TYPE = PoW
COIN_GITHUB = https://github.com/VeriConomy
COIN_TELEGRAM = https://t.me/VeriCoinandVerium/
COIN_TWITTER = https://twitter.com/vericonomy/
COIN_REDDIT = https://www.reddit.com/r/vericoin/
COIN_FACEBOOK = https://www.facebook.com/vericoin/
COIN_SLACK = https://slack.vericoin.info/
COIN_SITE = https://vericoin.info/
# COINGECKO
COINGECKO_SYMBOL = veriumreserve
# RPC
RPC_HOST = http://127.0.0.1
RPC_USERNAME = user
RPC_PASSWORD = password
RPC_PORT = 33987
RPC_TIMEOUT = 50000
# Database
TYPEORM_CONNECTION = postgres
TYPEORM_HOST = 127.0.0.1
TYPEORM_USERNAME = myuser
TYPEORM_PASSWORD = password
TYPEORM_DATABASE = gbcexplorer
TYPEORM_PORT = 5432
# Redis
REDIS_HOST = 127.0.0.1
REDIS_PASSWORD =
REDIS_PORT = 6379
# Node
NODE_ENV = production
# Database specific
TYPEORM_SYNCHRONIZE = false
TYPEORM_DROP_SCHEMA = false
TYPEORM_LOGGING = ["warn", "error"]
TYPEORM_ENTITIES = packages/shared/dist/entity/*.js
TYPEORM_MIGRATIONS = packages/shared/dist/migration/*.js