feat: refactored front end

This commit is contained in:
Pierre Tellier 2025-02-04 15:18:59 +01:00
parent 8674625bb4
commit 3619e6684e
33 changed files with 4067 additions and 13 deletions

View File

@ -28,20 +28,20 @@ services:
KC_BOOTSTRAP_ADMIN_USERNAME: ${KEYCLOAK_ADMIN} KC_BOOTSTRAP_ADMIN_USERNAME: ${KEYCLOAK_ADMIN}
KC_BOOTSTRAP_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD} KC_BOOTSTRAP_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD}
KC_LOG_LEVEL: info KC_LOG_LEVEL: info
command: ["start-dev", "--http-port", "7080", "--https-port", "7443"] command: ["start-dev", "--http-port", "7080", "--https-port", "7443", "--hostname", "${KEYCLOAK_HOSTNAME}"]
ports: ports:
- "7080:7080" - "7080:7080"
- "7443:7443" - "7443:7443"
depends_on: depends_on:
- postgres - postgres
#front: front:
# build: build:
# context: ./front/ context: ./front/
# dockerfile: Dockerfile dockerfile: Dockerfile
# container_name: MyINPulse-front container_name: MyINPulse-front
# ports: ports:
# - 8080:80 - 8080:80
#back: #back:
# build: # build:

33
front/MyINPulse-front/.gitignore vendored Normal file
View File

@ -0,0 +1,33 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
.DS_Store
dist
dist-ssr
coverage
*.local
/cypress/videos/
/cypress/screenshots/
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.tsbuildinfo
test-results/
playwright-report/

4026
front/MyINPulse-front/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -12,13 +12,9 @@
"type-check": "vue-tsc --build" "type-check": "vue-tsc --build"
}, },
"dependencies": { "dependencies": {
"@auth0/auth0-vue": "^2.4.0",
"@dsb-norge/vue-keycloak-js": "^3.0.1",
"axios": "^1.7.9", "axios": "^1.7.9",
"cors": "^2.8.5", "cors": "^2.8.5",
"keycloak-js": "^26.1.0", "keycloak-js": "^26.1.0",
"oidc-client-ts": "^3.1.0",
"oidc-spa": "^6.0.7",
"pinia": "^2.3.1", "pinia": "^2.3.1",
"pinia-plugin-persistedstate": "^4.2.0", "pinia-plugin-persistedstate": "^4.2.0",
"vue": "^3.5.13", "vue": "^3.5.13",

View File

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

Before

Width:  |  Height:  |  Size: 276 B

After

Width:  |  Height:  |  Size: 276 B

View File

@ -16,6 +16,5 @@ export default defineConfig({
}, },
}, },
server: { server: {
allowedHosts: ["localhost.ipb.fr", "cas.bordeaux-inp.fr"]
} }
}) })