Skip to content

Commit

Permalink
use production api
Browse files Browse the repository at this point in the history
  • Loading branch information
tpikachu committed Feb 27, 2024
1 parent c3186db commit 63ca1b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38829,9 +38829,8 @@ const waitFor = (ms) => new Promise((r) => setTimeout(r, ms));
(async function () {
const baseUrl =
(process.env.IS_DEV
? // ? "https://replayable-dev-michael.ngrok.io"
"http://localhost:1337"
: "https://replayable-api-staging.herokuapp.com") + "/api/v1";
? "http://localhost:1337"
: "https://replayable-api-production.herokuapp.com") + "/api/v1";

const repo = process.env.IS_DEV
? "replayableio/testdriver-action"
Expand Down
5 changes: 2 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ const waitFor = (ms) => new Promise((r) => setTimeout(r, ms));
(async function () {
const baseUrl =
(process.env.IS_DEV
? // ? "https://replayable-dev-michael.ngrok.io"
"http://localhost:1337"
: "https://replayable-api-staging.herokuapp.com") + "/api/v1";
? "http://localhost:1337"
: "https://replayable-api-production.herokuapp.com") + "/api/v1";

const repo = process.env.IS_DEV
? "replayableio/testdriver-action"
Expand Down

0 comments on commit 63ca1b3

Please sign in to comment.