Skip to content

Commit

Permalink
chore: stage -> staging in the config generation file (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebezzi authored May 16, 2022
1 parent be75ba1 commit b7d16b8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions hosted/create_env_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

assert(env is not None, "No HAPPY_ENV specified")

# Happy uses `stage` as the environment, but the application needs `staging`
if env == "stage":
env = "staging"

if env == "prod":
api_base_url = f"https://api.cellxgene.cziscience.com/cellxgene/"
web_base_url = f"https://cellxgene.cziscience.com/" # Also used for the multi_dataset index page
Expand Down

0 comments on commit b7d16b8

Please sign in to comment.