From 63ca1b3c7caaea7b8d05109701c1ac19923a2cc5 Mon Sep 17 00:00:00 2001 From: tpikachu <46133358+tpikachu@users.noreply.github.com> Date: Mon, 26 Feb 2024 21:18:24 -0600 Subject: [PATCH] use production api --- dist/index.js | 5 ++--- src/index.js | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/dist/index.js b/dist/index.js index 7119d43..9af9f26 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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" diff --git a/src/index.js b/src/index.js index 9af9e85..50ea095 100644 --- a/src/index.js +++ b/src/index.js @@ -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"