-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy path.env.test.example
112 lines (91 loc) · 1.6 KB
/
.env.test.example
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#
# APPLICATION
#
NODE_ENV=test
APP_NAME=particl-marketplace
APP_HOST=http://localhost
APP_URL_PREFIX=/api
APP_PORT=3000
RPCUSER=test
RPCPASSWORD=test
RPCHOSTNAME=localhost
MAINNET_PORT=52738
TESTNET_PORT=52935
ZMQ_PORT=54235
JASMINE_TIMEOUT=100000
TEST_BOOTSTRAP_WAITFOR=10
#
# MARKETPLACE
#
STANDALONE=true
APP_DEFAULT_MARKETPLACE_NAME=DEFAULT
APP_DEFAULT_MARKETPLACE_PRIVATE_KEY=2Zc2pc9jSx2qF5tpu25DCZEr1Dwj8JBoVL5WP4H1drJsX9sP4ek
APP_DEFAULT_MARKETPLACE_ADDRESS=pmktyVZshdMAQ6DPbbRXEFNGuzMbTMkqAA
PAID_MESSAGE_RETENTION_DAYS=7
FREE_MESSAGE_RETENTION_DAYS=7
# TODO: generate these like a cookie file
MARKET_RPC_USER=test
MARKET_RPC_PASSWORD=test
#
# LOGGING
#
LOG_LEVEL=debug
LOG_ADAPTER=winston
#
# API Info
#
API_INFO_ENABLED=true
API_INFO_ROUTE=/info
ZMQ_ENABLED=false
#
# CLI
#
CLI_ENABLED=true
CLI_ROUTE=/cli
#
# Monitor
#
MONITOR_ENABLED=true
MONITOR_ROUTE=/status
#
# DATABASE
#
DB_CLIENT=sqlite3
DB_CONNECTION=./data/database/marketplace-test.db
#
# Knex
#
DB_POOL_MIN=0
DB_POOL_MAX=1
DB_MIGRATION_DIR=./src/database/migrations
DB_MIGRATION_TABLE=version
DB_SEEDS_DIR=./src/database/seeds
#
# Auth0
#
AUTH0_HOST=http://localhost:3333
#
# PRICETICKER
#
DATA_CHECK_DELAY=5
# CURRENCY_PRICE
#
CHASING_COINS_API=https://chasing-coins.com/api/v1/convert
CHASING_COINS_API_DELAY=5
#
# FREQUENCY TO ERASE EXPIRED LISTING ITEMS
#
LISTING_ITEMS_EXPIRED_INTERVAL=10
PROPOSAL_RESULT_RECALCULATION_INTERVAL=30
#
# VOTING
#
LISTING_ITEM_REMOVE_PERCENTAGE=0.1
#
# WEBHOOKS
#
#WEBHOOK_MPA_LISTING_ADD_03=http://localhost
#WEBHOOK_MPA_BID_03=http://localhost
#WEBHOOK_MPA_MARKET_ADD=http://localhost
#...
MPMESSAGE_DEBUG=true