fedimintd/
envs.rs

1// Env variable to TODO
2pub const FM_DISABLE_META_MODULE_ENV: &str = "FM_DISABLE_META_MODULE";
3
4// Env variable to TODO
5pub const FM_DATA_DIR_ENV: &str = "FM_DATA_DIR";
6
7// Env variable to TODO
8pub const FM_PASSWORD_ENV: &str = "FM_PASSWORD";
9
10// Env variable to TODO
11pub const FM_TOKIO_CONSOLE_BIND_ENV: &str = "FM_TOKIO_CONSOLE_BIND";
12
13// Env variable to TODO
14pub const FM_BIND_P2P_ENV: &str = "FM_BIND_P2P";
15
16// Env variable to TODO
17pub const FM_P2P_URL_ENV: &str = "FM_P2P_URL";
18
19// Env variable to TODO
20pub const FM_BIND_API_ENV: &str = "FM_BIND_API";
21
22// Env variable to TODO
23pub const FM_BIND_API_WS_ENV: &str = "FM_BIND_API_WS";
24
25// Env variable to TODO
26pub const FM_BIND_API_IROH_ENV: &str = "FM_BIND_API_IROH";
27
28// Env variable to TODO
29pub const FM_API_URL_ENV: &str = "FM_API_URL";
30
31// Env variable to bind the web UI server
32pub const FM_BIND_UI_ENV: &str = "FM_BIND_UI";
33
34// Env variable to TODO
35pub const FM_BITCOIN_NETWORK_ENV: &str = "FM_BITCOIN_NETWORK";
36
37// Env variable to TODO
38pub const FM_BIND_METRICS_API_ENV: &str = "FM_BIND_METRICS_API";
39
40// Env variable to TODO
41pub const FM_PORT_ESPLORA_ENV: &str = "FM_PORT_ESPLORA";
42
43// Can be used to absolutely override the values stored in the db
44pub const FM_FORCE_API_SECRETS_ENV: &str = "FM_FORCE_API_SECRETS";