forked from paritytech/polkadot-testnet-faucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.faucet.config.json
105 lines (105 loc) · 3.11 KB
/
env.faucet.config.json
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
{
"SMF": {
"CONFIG": {
"DB_HOST": {
"description": "database hostname",
"default": "localhost",
"mandatory": true,
"type": "string"
},
"DB_PORT": {
"description": "database port",
"default": 5432,
"mandatory": true,
"type": "number"
},
"DB_USERNAME": {
"description": "database username",
"default": "postgres",
"mandatory": true,
"type": "string"
},
"DB_PASSWORD": {
"description": "database password",
"default": "postgres",
"mandatory": true,
"masked": true,
"type": "string"
},
"DB_DATABASE_NAME": {
"description": "name of postgres database",
"default": "faucet",
"mandatory": true,
"type": "string"
},
"DEPLOYED_REF": {
"description": "git ref which of deployed app",
"default": "unset",
"type": "string"
},
"FAUCET_ACCOUNT_MNEMONIC": {
"description": "mnemonic seed from faucet account (create via polkadot.js.org)",
"mandatory": true,
"masked": true,
"type": "string"
},
"FAUCET_IGNORE_LIST": {
"description": "A list of Matrix accounts that will be silently (but logged) ignored, comma separated. Example: \"@alice:matrix.org,@bob:domain.com\"",
"default": "",
"type": "string"
},
"MATRIX_ACCESS_TOKEN": {
"description": "your bot access token here is how to find it https://t2bot.io/docs/access_tokens/.",
"masked": true,
"type": "string"
},
"MATRIX_BOT_USER_ID": {
"description": "your bot user id",
"regexp": "^@.*:.*$",
"type": "string"
},
"MATRIX_SERVER": {
"description": "matrix server url",
"default": "https://matrix.org",
"type": "string"
},
"NETWORK": {
"description": "name of the network: westend, rococo, etc.",
"mandatory": true,
"type": "string"
},
"PORT": {
"description": "the port you want the server to listen on",
"default": 5555,
"type": "number"
},
"RECAPTCHA_SECRET": {
"description": "A secret recaptcha token used to validate external requests",
"default": "",
"masked": true,
"type": "string"
},
"CAPTCHA_PROVIDER": {
"description": "The captcha provider to use. Currently, Prosopo's 'procaptcha' and Google's 'recaptcha' are supported",
"default": "procaptcha",
"type": "string"
},
"PROSOPO_SITE_KEY": {
"description": "A secret procaptcha token used to validate external requests",
"default": "",
"masked": true,
"type": "string"
},
"PROSOPO_CONTRACT_ADDRESS": {
"description": "The address of the procaptcha contract",
"type": "string",
"optional": true
},
"PROSOPO_SUBSTRATE_ENDPOINT": {
"description": "The endpoint of the procaptcha substrate node used for e2e testing",
"optional": true,
"type": "string"
}
}
}
}