-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hotfix/allow user to set which DesignSafe site to use in local dev (#318
) * Allow user to set which DS site to use during local development * Update example * Improve comment
- Loading branch information
1 parent
382d31a
commit c24280c
Showing
3 changed files
with
30 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
import { GeoapiBackendEnvironment, LocalAppConfiguration } from './types'; | ||
import { | ||
DesignSafePortalEnvironment, | ||
GeoapiBackendEnvironment, | ||
LocalAppConfiguration, | ||
} from './types'; | ||
|
||
export const localDevelopmentConfiguration: LocalAppConfiguration = { | ||
geoapiBackend: GeoapiBackendEnvironment.Production, | ||
geoapiBackend: GeoapiBackendEnvironment.Staging, | ||
designSafePortal: DesignSafePortalEnvironment.PPRD, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters