diff --git a/.env.example b/.env.example index 7420603..94a2f7d 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,4 @@ -VITE_API_URL=http://backend.holos.test +VITE_API_URL=http://backend.holos.test:8080 VITE_BASE_URL=http://frontend.holos.test VITE_REVERB_APP_ID= @@ -8,3 +8,5 @@ VITE_REVERB_HOST="backend.holos.test" VITE_REVERB_PORT=8080 VITE_REVERB_SCHEME=http VITE_REVERB_ACTIVE=false + +APP_PORT=3000 diff --git a/install.sh b/install.sh index 96438df..b40edd2 100755 --- a/install.sh +++ b/install.sh @@ -4,8 +4,8 @@ if [ ! -f .env ]; then cp .env.example .env fi -if [ ! -f colors.json ]; then - cp colors.json.example colors.json +if [ ! -f colors.css ]; then + cp colors.css.example colors.css fi exec "$@"