diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 766ef32835..e7db0c5cf8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: name: build-prod env: - ALBY_API_URL: "https://getalby.com/api" + ALBY_API_URL: "https://api.getalby.com" permissions: issues: write diff --git a/doc/SETUP.md b/doc/SETUP.md index b46f949c68..aefb3de01b 100644 --- a/doc/SETUP.md +++ b/doc/SETUP.md @@ -16,7 +16,7 @@ - Opera\ `$ yarn run dev:opera` - **NOTE:** by default, the extension built this way will talk to the testnet API (which runs under [app.regtest.getalby.com](https://app.regtest.getalby.com/api)). In case you want to do manual tests against the mainnet API, add the following `ALBY_API_URL` environment variable to your command: `$ ALBY_API_URL="https://getalby.com/api" yarn run dev:your-browser-of-choice` + **NOTE:** by default, the extension built this way will talk to the testnet API (which runs under [api.regtest.getalby.com](https://api.regtest.getalby.com)). In case you want to do manual tests against the mainnet API, add the following `ALBY_API_URL` environment variable to your command: `$ ALBY_API_URL="https://api.getalby.com" yarn run dev:your-browser-of-choice` - **Chrome** diff --git a/playwright.config.ts b/playwright.config.ts index 91e6af2a15..7b2ec07d06 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -7,7 +7,7 @@ import { devices } from "@playwright/test"; */ // require('dotenv').config(); -if (process.env.ALBY_API_URL === "https://getalby.com/api") { +if (process.env.ALBY_API_URL === "https://api.getalby.com") { console.error( ` ----