update example env

This commit is contained in:
Paul Miller
2023-09-29 17:18:40 -05:00
parent ee02c55791
commit ccb7f3737e
3 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ VITE_PROXY="wss://p.mutinywallet.com"
VITE_ESPLORA="https://mutinynet.com/api" VITE_ESPLORA="https://mutinynet.com/api"
VITE_LSP="https://signet-lsp.mutinywallet.com" VITE_LSP="https://signet-lsp.mutinywallet.com"
VITE_RGS="https://rgs.mutinynet.com/snapshot/" VITE_RGS="https://rgs.mutinynet.com/snapshot/"
VITE_SELFHOSTED="true" # VITE_SELFHOSTED="true" // Removes Mutiny+
VITE_AUTH="https://auth-staging.mutinywallet.com" VITE_AUTH="https://auth-staging.mutinywallet.com"
VITE_SUBSCRIPTIONS="https://subscriptions-staging.mutinywallet.com" VITE_SUBSCRIPTIONS="https://subscriptions-staging.mutinywallet.com"
VITE_STORAGE="https://storage-staging.mutinywallet.com/v2" VITE_STORAGE="https://storage-staging.mutinywallet.com/v2"

View File

@@ -21,7 +21,7 @@ export default {
pending: "Pending", pending: "Pending",
error_safe_mode: error_safe_mode:
"Mutiny is running in safe mode. Lightning is disabled.", "Mutiny is running in safe mode. Lightning is disabled.",
self_hosted: "Self-hosted", self_hosted: "Self-hosted"
}, },
contacts: { contacts: {
new: "new", new: "new",

View File

@@ -64,7 +64,7 @@ export default function App() {
</Show> </Show>
<Show when={state.settings?.selfhosted === "true"}> <Show when={state.settings?.selfhosted === "true"}>
<div class="text-white-400 -my-1 box-border w-fit rounded bg-neutral-800 px-2 py-1 text-xs uppercase"> <div class="text-white-400 -my-1 box-border w-fit rounded bg-neutral-800 px-2 py-1 text-xs uppercase">
{i18n.t("common.self_hosted")} {i18n.t("common.self_hosted")}
</div> </div>
</Show> </Show>
</div> </div>