forked from cashubtc/orchard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
57 lines (52 loc) · 1.59 KB
/
Copy path.env.example
File metadata and controls
57 lines (52 loc) · 1.59 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
52
53
54
55
56
57
# --------------------------------------------
# Environment Configs
# --------------------------------------------
PRODUCTION='true'
# --------------------------------------------
# Server Configs
# --------------------------------------------
SERVER_HOST='localhost'
SERVER_PORT='3321'
BASE_PATH='api'
LOG_LEVEL='warn'
TOR_PROXY_SERVER='socks://127.0.0.1:9050'
ADMIN_PASSWORD='orchardpass'
# --------------------------------------------
# Server Defaults
# --------------------------------------------
# THROTTLE_TTL='60000'
# THROTTLE_LIMIT='20'
# --------------------------------------------
# Bitcoin Configs
# --------------------------------------------
# valid types: 'core'
BITCOIN_TYPE='core'
BITCOIN_RPC_HOST='localhost'
BITCOIN_RPC_PORT='8332'
BITCOIN_RPC_USER='btc.rpc.user'
BITCOIN_RPC_PASSWORD='btc.rpc.pass'
# --------------------------------------------
# Lightning Configs
# --------------------------------------------
# valid types: 'lnd'
LIGHTNING_TYPE='lnd'
LIGHTNING_RPC_HOST='localhost'
LIGHTNING_RPC_PORT='8447'
LIGHTNING_MACAROON='path/to/macaroon'
LIGHTNING_CERT='path/to/cert'
# --------------------------------------------
# Cashu Configs
# --------------------------------------------
# valid types: 'cdk' | 'nutshell'
MINT_TYPE='cdk'
MINT_API='http://localhost:5551'
MINT_DATABASE='path/to/mint.sqlite3'
MINT_RPC_HOST='localhost'
MINT_RPC_PORT='5552'
MINT_RPC_KEY='path/to/client.key'
MINT_RPC_CERT='path/to/client.pem'
MINT_RPC_CA='path/to/ca.pem'
# --------------------------------------------
# AI Configs
# --------------------------------------------
AI_API='http://localhost:11434'