diff --git a/.env.example b/.env.example index 2e4ec3a..626feab 100644 --- a/.env.example +++ b/.env.example @@ -4,7 +4,7 @@ VITE_APP_LANG=es-MX VITE_APP_PORT=3000 VITE_PAGINATION=25 -VITE_APP_API=http://localhost:8080 #Colocar http://localhost:8080 con el puerto del backend / http://backend.golscontrol.test +VITE_API_URL=http://localhost:8080 VITE_APP_API_SECURE=false VITE_MICROSERVICE_STOCK=http://localhost:3000/api diff --git a/docker-compose.yml b/docker-compose.yml index fab45f9..62b67e7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,16 +1,16 @@ services: - holos-frontend: + comal-pagos-frontend: build: context: . dockerfile: dockerfile ports: - "${APP_PORT}:5173" volumes: - - .:/var/www/holos.frontend - - /var/www/holos.frontend/node_modules + - .:/var/www/comal-pagos.frontend + - /var/www/comal-pagos.frontend/node_modules networks: - - holos-network + - comal-pagos-network networks: - holos-network: + comal-pagos-network: driver: bridge \ No newline at end of file diff --git a/dockerfile b/dockerfile index 80d3f3f..b0446c3 100644 --- a/dockerfile +++ b/dockerfile @@ -1,6 +1,6 @@ FROM node:22-alpine AS build -WORKDIR /var/www/holos.frontend +WORKDIR /var/www/comal-pagos.frontend COPY package*.json ./ diff --git a/install.sh b/install.sh index 96438df..6550b1a 100755 --- a/install.sh +++ b/install.sh @@ -1,11 +1,11 @@ -#! /bin/bash +#! /bin/sh 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 "$@" diff --git a/public/logo.png b/public/logo.png new file mode 100644 index 0000000..fc49e1a Binary files /dev/null and b/public/logo.png differ diff --git a/src/components/Holos/Logo.vue b/src/components/Holos/Logo.vue index f6b176c..007bd8a 100644 --- a/src/components/Holos/Logo.vue +++ b/src/components/Holos/Logo.vue @@ -19,6 +19,6 @@ const home = () => { class="flex w-full justify-center items-center space-x-2 cursor-pointer" @click="home" > - + \ No newline at end of file diff --git a/src/layouts/AppLayout.vue b/src/layouts/AppLayout.vue index d33531b..0dbbabd 100644 --- a/src/layouts/AppLayout.vue +++ b/src/layouts/AppLayout.vue @@ -35,9 +35,9 @@ onMounted(() => { to="dashboard.index" />
+import PageHeader from '@Holos/PageHeader.vue'; + + + + \ No newline at end of file diff --git a/src/router/Index.js b/src/router/Index.js index 5fcdcb2..7462a79 100644 --- a/src/router/Index.js +++ b/src/router/Index.js @@ -48,6 +48,16 @@ const router = createRouter({ }, ] }, + { + path: 'address', + children: [ + { + path: '', + name: 'address.index', + component: () => import('@Pages/App/Address/Index.vue') + } + ] + } ], }, {