diff --git a/.github/workflows/codesphere-deploy.yml b/.github/workflows/codesphere-deploy.yml index daffbdf..7c92587 100644 --- a/.github/workflows/codesphere-deploy.yml +++ b/.github/workflows/codesphere-deploy.yml @@ -33,5 +33,5 @@ jobs: env: | NODE_ENV=development DEBUG=true - apiUrl: https://codesphere.com/ + apiUrl: https://qa.dev-codesphere.com/ tlsAllowUnauthorized: "true" diff --git a/frontend/index.js b/frontend/index.js index 16a3229..be7c68c 100644 --- a/frontend/index.js +++ b/frontend/index.js @@ -26,6 +26,8 @@ app.get('/:shortId', (req, res) => { } }); +console.log("hi"); + app.listen(PORT, () => { console.log(`Frontend server running on http://localhost:${PORT}`); });