From ba894b704ef5907fda79e61127ace67692056545 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9rick=20Pruneau?= Date: Tue, 30 Dec 2025 11:51:19 -0500 Subject: [PATCH 1/3] Added docker-compose file --- docker-compose.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..1d6df07 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,26 @@ +--- +name: app-targo +services: + backend: + build: + context: https://git.targo.ca/Targo/targo_backend.git + args: + - CALLBACK_URL=http://${SERVER_IP}:${BACKEND_PUBLIC_PORT}/auth/callback + environment: + - REDIRECT_URL_DEV=http://${SERVER_IP}:${FRONTEND_PUBLIC_PORT}/#/login-success + env_file: + - stack.env + ports: + - ${BACKEND_PUBLIC_PORT}:3000 + + frontend: + build: + context: https://git.targo.ca/Targo/targo_frontend.git + args: + - BACKEND_URL=http://${SERVER_IP}:${BACKEND_PUBLIC_PORT}/ + volumes: + - .:/app + env_file: + - stack.env + ports: + - ${FRONTEND_PUBLIC_PORT}:9000 \ No newline at end of file From 1d0c77b1fd409fbfbf5f684712b432e27059c3ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9rick=20Pruneau?= Date: Tue, 30 Dec 2025 14:56:20 -0500 Subject: [PATCH 2/3] added allowedHosts to make URL functional. --- quasar.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quasar.config.ts b/quasar.config.ts index 2fc4168..8e9ee05 100644 --- a/quasar.config.ts +++ b/quasar.config.ts @@ -97,7 +97,8 @@ export default defineConfig((ctx) => { // Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#devserver devServer: { // https: true, - open: true // opens browser window automatically + open: true, // opens browser window automatically + allowedHosts: true, }, // https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#framework From a2d5a187d244bf07de2bc530493c4a7a410c1399 Mon Sep 17 00:00:00 2001 From: Matthieu Haineault Date: Mon, 5 Jan 2026 08:36:55 -0500 Subject: [PATCH 3/3] fix(help): small modification display --- src/modules/help/components/help-module.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/help/components/help-module.vue b/src/modules/help/components/help-module.vue index 315b9ed..a2b33f5 100644 --- a/src/modules/help/components/help-module.vue +++ b/src/modules/help/components/help-module.vue @@ -71,7 +71,7 @@ const switchSide = (index: number) => { -
+