From 7445e2d4ad30d8d3229a290ea4e97d63361a7d91 Mon Sep 17 00:00:00 2001 From: Juan Felipe Zapata Moreno Date: Thu, 18 Sep 2025 15:40:14 -0600 Subject: [PATCH] ADD: Docker --- .env.example | 4 +++- install.sh | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) 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 "$@"