Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes for .com domain to .org in local k8s configurations #7699

Merged
merged 1 commit into from
Mar 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/client/scripts/getClientSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const getClientSetting = async () => {
}) || {
logo: './logo.svg',
title: 'Ethereal Engine',
url: 'https://local.etherealengine.com',
url: 'https://local.etherealengine.org',
releaseName: 'local',
siteDescription: 'Connected Worlds for Everyone',
favicon32px: '/favicon-32x32.png',
Expand Down
6 changes: 3 additions & 3 deletions scripts/build_microk8s.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ fi

if [ -z "$VITE_APP_HOST" ]
then
VITE_APP_HOST=local.etherealengine.com
VITE_APP_HOST=local.etherealengine.org
else
VITE_APP_HOST=$VITE_APP_HOST
fi

if [ -z "$VITE_SERVER_HOST" ]
then
VITE_SERVER_HOST=api-local.etherealengine.com
VITE_SERVER_HOST=api-local.etherealengine.org
else
VITE_SERVER_HOST=$VITE_SERVER_HOST
fi
Expand All @@ -74,7 +74,7 @@ fi

if [ -z "$VITE_INSTANCESERVER_HOST" ]
then
VITE_INSTANCESERVER_HOST=instanceserver-local.etherealengine.com
VITE_INSTANCESERVER_HOST=instanceserver-local.etherealengine.org
else
VITE_INSTANCESERVER_HOST=$VITE_INSTANCESERVER_HOST
fi
Expand Down
6 changes: 3 additions & 3 deletions scripts/build_minikube.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ fi

if [ -z "$VITE_APP_HOST" ]
then
VITE_APP_HOST=local.etherealengine.com
VITE_APP_HOST=local.etherealengine.org
else
VITE_APP_HOST=$VITE_APP_HOST
fi

if [ -z "$VITE_SERVER_HOST" ]
then
VITE_SERVER_HOST=api-local.etherealengine.com
VITE_SERVER_HOST=api-local.etherealengine.org
else
VITE_SERVER_HOST=$VITE_SERVER_HOST
fi
Expand All @@ -67,7 +67,7 @@ fi

if [ -z "$VITE_INSTANCESERVER_HOST" ]
then
VITE_INSTANCESERVER_HOST=instanceserver-local.etherealengine.com
VITE_INSTANCESERVER_HOST=instanceserver-local.etherealengine.org
else
VITE_INSTANCESERVER_HOST=$VITE_INSTANCESERVER_HOST
fi
Expand Down
12 changes: 6 additions & 6 deletions scripts/setup-ip-nginx.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
cp .env.local.default .env.local
replace "localhost:3000" "local.etherealengine.com" -- .env.local
replace "localhost:8642" "resources-local.etherealengine.com" -- .env.local
replace "localhost:3030" "api-local.etherealengine.com" -- .env.local
replace "localhost:3000" "local.etherealengine.org" -- .env.local
replace "localhost:8642" "resources-local.etherealengine.org" -- .env.local
replace "localhost:3030" "api-local.etherealengine.org" -- .env.local

replace "VITE_APP_HOST=localhost" "VITE_APP_HOST=local.etherealengine.com" -- .env.local
replace "VITE_SERVER_HOST=localhost" "VITE_SERVER_HOST=api-local.etherealengine.com" -- .env.local
replace "VITE_INSTANCESERVER_HOST=localhost" "VITE_INSTANCESERVER_HOST=instanceserver-local.etherealengine.com" -- .env.local
replace "VITE_APP_HOST=localhost" "VITE_APP_HOST=local.etherealengine.org" -- .env.local
replace "VITE_SERVER_HOST=localhost" "VITE_SERVER_HOST=api-local.etherealengine.org" -- .env.local
replace "VITE_INSTANCESERVER_HOST=localhost" "VITE_INSTANCESERVER_HOST=instanceserver-local.etherealengine.org" -- .env.local

npm run dev-reinit