Skip to content

Commit 7f979ea

Browse files
authored
Change mint url (#365)
1 parent eafd2bf commit 7f979ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The following options are available:
1414
* `ENVIRONMENT` - environment to start the app in (default: development)
1515
* `RUST_LOG` - the log level, e.g.: info, trace, debug, error (default: error)
1616
* `NOSTR_RELAY` - nostr relay endpoint (default: ws://localhost:8080)
17-
* `MINT_URL` - cashu mint endpoint (default: http://127.0.0.1:3338)
17+
* `MINT_URL` - cashu mint endpoint (default: https://moksha.minibill.tech)
1818
* `JOB_RUNNER_INITIAL_DELAY_SECONDS` - initial delay until cron jobs run (default: 1)
1919
* `JOB_RUNNER_CHECK_INTERVAL_SECONDS` - interval in which cron jobs run (default: 600)
2020
* `FRONTEND_URL_PATH` - default path to serve the frontend from (default: /)

src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub struct Config {
2929
pub environment: String,
3030
#[arg(default_value_t = String::from("ws://localhost:8080"), long, env = "NOSTR_RELAY")]
3131
pub nostr_relay: String,
32-
#[arg(default_value_t = String::from("http://127.0.0.1:3338"), long, env = "MINT_URL")]
32+
#[arg(default_value_t = String::from("https://moksha.minibill.tech"), long, env = "MINT_URL")]
3333
pub mint_url: String,
3434
#[arg(default_value_t = 1, long, env = "JOB_RUNNER_INITIAL_DELAY_SECONDS")]
3535
pub job_runner_initial_delay_seconds: u64,

0 commit comments

Comments
 (0)