Skip to content

Commit

Permalink
update to new service instance (#4825)
Browse files Browse the repository at this point in the history
fixes #4823
<!-- Link to relevant issue (for ex: "fixes #1234") which will
automatically close the issue once the PR is merged -->

## PR Type
<!-- Please uncomment one ore more that apply to this PR -->

Bugfix
<!-- - Feature -->
<!-- - Code style update (formatting) -->
<!-- - Refactoring (no functional changes, no api changes) -->
<!-- - Build or CI related changes -->
<!-- - Documentation content changes -->
<!-- - Sample app changes -->
<!-- - Other... Please describe: -->


## Describe the current behavior?
<!-- Please describe the current behavior that is being modified or link
to a relevant issue. -->
Service was broken, unfortunately I must be light on details here.

## Describe the new behavior?
Pointing to our new instance of the main test service.

## PR Checklist

- [x ] Test: run `npm run test` and ensure that all tests pass
- [ x] Target main branch (or an appropriate release branch if
appropriate for a bug fix)
- [ x] Ensure that your contribution follows [standard accessibility
guidelines](https://docs.microsoft.com/en-us/microsoft-edge/accessibility/design).
Use tools like https://webhint.io/ to validate your changes.


## Additional Information
  • Loading branch information
jgw96 authored Oct 3, 2024
1 parent e43a632 commit f9d285c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/pwabuilder/src/script/utils/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const env = {
//@ts-ignore
if (import.meta.env.PROD) {
env.isProduction = true;
env.api = 'https://pwabuilder-apiv2-node.azurewebsites.net/api';
env.api = 'https://pwabuilder-apiv2-container.calmflower-2e2ebb94.eastus.azurecontainerapps.io/api';
env.manifestCreatorUrl =
'https://pwabuilder-manifest-creator.azurewebsites.net/api/create';
env.windowsPackageGeneratorUrl =
Expand All @@ -38,7 +38,7 @@ if (import.meta.env.PROD) {
env.validateGiveawayUrl =
'https://pwabuilder-tokens-giveaway.azurewebsites.net/api';
} else {
env.api = 'https://pwabuilder-apiv2-node.azurewebsites.net/api';
env.api = 'https://pwabuilder-apiv2-container.calmflower-2e2ebb94.eastus.azurecontainerapps.io/api';
env.manifestCreatorUrl =
'https://pwabuilder-manifest-creator.azurewebsites.net/api/create';
env.windowsPackageGeneratorUrl =
Expand Down

0 comments on commit f9d285c

Please sign in to comment.