chore(superadmin): set apex domain default to local

This commit is contained in:
Ben Allfree 2024-06-05 17:59:11 -07:00
parent 6abcbfe5d3
commit ea19963bf9

View File

@ -6,17 +6,17 @@ import { boolean } from 'boolean'
* will prevail. * will prevail.
*/ */
// The apex domain of this whole operation.
export const PUBLIC_APEX_DOMAIN =
import.meta.env.PUBLIC_APEX_DOMAIN || `pockethost.lvh.me`
// The domain name where this dashboard lives // The domain name where this dashboard lives
export const PUBLIC_APP_URL = export const PUBLIC_APP_URL =
import.meta.env.PUBLIC_APP_URL || 'https://app.pockethost.io' import.meta.env.PUBLIC_APP_URL || `https://app.${PUBLIC_APEX_DOMAIN}`
// The apex domain of this whole operation. Also known as the "app" or "dashboard"
export const PUBLIC_APEX_DOMAIN =
import.meta.env.PUBLIC_APEX_DOMAIN || `pockethost.io`
// The domain name of the lander/marketing site // The domain name of the lander/marketing site
export const PUBLIC_BLOG_URL = export const PUBLIC_BLOG_URL =
import.meta.env.PUBLIC_BLOG_URL || 'https://pockethost.io' import.meta.env.PUBLIC_BLOG_URL || `https://${PUBLIC_APEX_DOMAIN}`
// The protocol to use, almost always will be https // The protocol to use, almost always will be https
export const PUBLIC_HTTP_PROTOCOL = export const PUBLIC_HTTP_PROTOCOL =
@ -25,7 +25,7 @@ export const PUBLIC_HTTP_PROTOCOL =
// The complete URL to the mothership // The complete URL to the mothership
export const PUBLIC_MOTHERSHIP_URL = export const PUBLIC_MOTHERSHIP_URL =
import.meta.env.PUBLIC_MOTHERSHIP_URL || import.meta.env.PUBLIC_MOTHERSHIP_URL ||
`https://pockethost-central.pockethost.io` `https://pockethost-central.${PUBLIC_APEX_DOMAIN}`
// Whether we are in debugging mode - default TRUE // Whether we are in debugging mode - default TRUE
export const PUBLIC_DEBUG = boolean(import.meta.env.PUBLIC_DEBUG || 'true') export const PUBLIC_DEBUG = boolean(import.meta.env.PUBLIC_DEBUG || 'true')