Skip to content

Commit

Permalink
killswitch qa env
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierPineau committed Nov 6, 2023
1 parent a1651d0 commit f653a79
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ enum class AppEnvironment(
key = "dev",
"https://api.mirego.com/graphql",
iOSSpecific = PlatformSpecific(
killSwitchAPIKey = "Replace with your own killSwitchAPIKey",
killSwitchUrl = "https://killswitch.mirego.com/killswitch"
killSwitchAPIKey = "", // Replace with your own killSwitchAPIKey
killSwitchUrl = "https://mirego-killswitch-qa.herokuapp.com/killswitch"
),
androidSpecific = PlatformSpecific(
killSwitchAPIKey = "Replace with your own killSwitchAPIKey",
killSwitchUrl = "https://killswitch.mirego.com/killswitch"
killSwitchAPIKey = "", // Replace with your own killSwitchAPIKey
killSwitchUrl = "https://mirego-killswitch-qa.herokuapp.com/killswitch"
)
),
PRODUCTION(
key = "production",
"https://api.mirego.com/graphql",
iOSSpecific = PlatformSpecific(
killSwitchAPIKey = "Replace with your own killSwitchAPIKey",
killSwitchAPIKey = "", // Replace with your own killSwitchAPIKey
killSwitchUrl = "https://killswitch.mirego.com/killswitch"
),
androidSpecific = PlatformSpecific(
killSwitchAPIKey = "Replace with your own killSwitchAPIKey",
killSwitchAPIKey = "", // Replace with your own killSwitchAPIKey
killSwitchUrl = "https://killswitch.mirego.com/killswitch"
)
)
Expand Down

0 comments on commit f653a79

Please sign in to comment.