Skip to content

Commit

Permalink
refactoring: Reverting impact-sphere url subdirectory
Browse files Browse the repository at this point in the history
  • Loading branch information
martintomas committed Dec 5, 2023
1 parent bf5ba1a commit 460efcd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions infrastructure/base/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ locals {
ADMIN_JWT_SECRET = random_password.admin_jwt_secret.result
TRANSFER_TOKEN_SALT = random_password.transfer_token_salt.result
JWT_SECRET = random_password.jwt_secret.result
CMS_URL = "${module.staging.app_url}/impact-sphere/cms"
STRAPI_ADMIN_API_BASE_URL = "${module.staging.app_url}/impact-sphere/cms/api"
CMS_URL = "${module.staging.app_url}/cms"
STRAPI_ADMIN_API_BASE_URL = "${module.staging.app_url}/cms/api"
STRAPI_ADMIN_MAPBOX_ACCESS_TOKEN = var.mapbox_api_token
STRAPI_MEDIA_LIBRARY_PROVIDER = "digitalocean"

Expand All @@ -64,10 +64,10 @@ locals {

}
staging_client_env = {
NEXT_PUBLIC_URL = "${module.staging.app_url}/impact-sphere"
NEXT_PUBLIC_BASE_PATH = "/impact-sphere"
NEXT_PUBLIC_URL = module.staging.app_url
NEXT_PUBLIC_BASE_PATH = ""
NEXT_PUBLIC_ENVIRONMENT = "production"
NEXT_PUBLIC_API_URL = "${module.staging.app_url}/impact-sphere/cms/api"
NEXT_PUBLIC_API_URL = "${module.staging.app_url}/cms/api"
NEXT_PUBLIC_GA_TRACKING_ID = var.ga_tracking_id
NEXT_PUBLIC_MAPBOX_API_TOKEN = var.mapbox_api_token
LOG_LEVEL = "info"
Expand Down
4 changes: 2 additions & 2 deletions infrastructure/base/modules/app/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ resource "digitalocean_app" "app" {
}

routes {
path = "/impact-sphere"
path = "/"
preserve_path_prefix = false
}
}
Expand All @@ -68,7 +68,7 @@ resource "digitalocean_app" "app" {
}

routes {
path = "/impact-sphere/cms"
path = "/cms"
preserve_path_prefix = false
}
}
Expand Down

0 comments on commit 460efcd

Please sign in to comment.