Skip to content

Commit

Permalink
Update HIVEMPPER_SITE_URL to use production URL
Browse files Browse the repository at this point in the history
Switched the HIVEMPPER_SITE_URL constant from the local development URL to the production URL. This change ensures that the application points to the correct production environment.
  • Loading branch information
billettc committed Sep 18, 2024
1 parent 9bd1ba3 commit 77ea4b3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions web/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ import (

const METABASE_SITE_URL = "https://metabase.streamingfast.io"

// const HIVEMPPER_SITE_URL = "https://hivemapper.streamingfast.io"
const HIVEMPPER_SITE_URL = "http://localhost:8080"
const HIVEMPPER_SITE_URL = "https://hivemapper.streamingfast.io"

//const HIVEMPPER_SITE_URL = "http://localhost:8080"

var METABASE_SECRET_KEY = os.Getenv("SECRET_KEY")

Expand Down

0 comments on commit 77ea4b3

Please sign in to comment.