Compare commits
No commits in common. "90b5ba3efbc636692724ea28bf835134421eeb55" and "e6e456631ebb2681b31632ab4f042b7af156213e" have entirely different histories.
90b5ba3efb
...
e6e456631e
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +0,0 @@
|
|||||||
.env
|
|
||||||
.idea
|
|
@ -1,3 +1,3 @@
|
|||||||
FROM openjdk:21-jdk
|
FROM openjdk:21-jdk
|
||||||
COPY MyINPulse-back/build/libs/myinpulse-0.0.1-SNAPSHOT.jar myinpulse.jar
|
COPY myinpulse/build/libs/myinpulse-0.0.1-SNAPSHOT.jar myinpulse.jar
|
||||||
ENTRYPOINT ["java","-jar","/myinpulse.jar"]
|
ENTRYPOINT ["java","-jar","/myinpulse.jar"]
|
3
back/MyINPulse-back/.gitattributes
vendored
3
back/MyINPulse-back/.gitattributes
vendored
@ -1,3 +0,0 @@
|
|||||||
/gradlew text eol=lf
|
|
||||||
*.bat text eol=crlf
|
|
||||||
*.jar binary
|
|
37
back/MyINPulse-back/.gitignore
vendored
37
back/MyINPulse-back/.gitignore
vendored
@ -1,37 +0,0 @@
|
|||||||
HELP.md
|
|
||||||
.gradle
|
|
||||||
build/
|
|
||||||
!gradle/wrapper/gradle-wrapper.jar
|
|
||||||
!**/src/main/**/build/
|
|
||||||
!**/src/test/**/build/
|
|
||||||
|
|
||||||
### STS ###
|
|
||||||
.apt_generated
|
|
||||||
.classpath
|
|
||||||
.factorypath
|
|
||||||
.project
|
|
||||||
.settings
|
|
||||||
.springBeans
|
|
||||||
.sts4-cache
|
|
||||||
bin/
|
|
||||||
!**/src/main/**/bin/
|
|
||||||
!**/src/test/**/bin/
|
|
||||||
|
|
||||||
### IntelliJ IDEA ###
|
|
||||||
.idea
|
|
||||||
*.iws
|
|
||||||
*.iml
|
|
||||||
*.ipr
|
|
||||||
out/
|
|
||||||
!**/src/main/**/out/
|
|
||||||
!**/src/test/**/out/
|
|
||||||
|
|
||||||
### NetBeans ###
|
|
||||||
/nbproject/private/
|
|
||||||
/nbbuild/
|
|
||||||
/dist/
|
|
||||||
/nbdist/
|
|
||||||
/.nb-gradle/
|
|
||||||
|
|
||||||
### VS Code ###
|
|
||||||
.vscode/
|
|
@ -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", "--hostname", "${KEYCLOAK_HOSTNAME}"]
|
command: ["start-dev", "--http-port", "7080", "--https-port", "7443"]
|
||||||
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:
|
||||||
|
35
front/MyINPulse-front/.gitignore
vendored
35
front/MyINPulse-front/.gitignore
vendored
@ -1,35 +0,0 @@
|
|||||||
# 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
|
|
||||||
!.vscode/extensions.json
|
|
||||||
.idea
|
|
||||||
*.suo
|
|
||||||
*.ntvs*
|
|
||||||
*.njsproj
|
|
||||||
*.sln
|
|
||||||
*.sw?
|
|
||||||
|
|
||||||
*.tsbuildinfo
|
|
||||||
|
|
||||||
test-results/
|
|
||||||
playwright-report/
|
|
||||||
|
|
4026
front/MyINPulse-front/package-lock.json
generated
4026
front/MyINPulse-front/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -12,9 +12,13 @@
|
|||||||
"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",
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 276 B After Width: | Height: | Size: 276 B |
@ -16,5 +16,6 @@ export default defineConfig({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
server: {
|
server: {
|
||||||
|
allowedHosts: ["localhost.ipb.fr", "cas.bordeaux-inp.fr"]
|
||||||
}
|
}
|
||||||
})
|
})
|
1
keycloak/CAS/.gitignore
vendored
1
keycloak/CAS/.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
keycloak-cas
|
|
@ -3,7 +3,6 @@
|
|||||||
if [ ! -d "./keycloak-cas/" ]
|
if [ ! -d "./keycloak-cas/" ]
|
||||||
then
|
then
|
||||||
git clone https://github.com/RoboJackets/keycloak-cas
|
git clone https://github.com/RoboJackets/keycloak-cas
|
||||||
patch $(find . | grep UrlHelper.java) https_patch
|
|
||||||
fi
|
fi
|
||||||
if [ -d "./target/" ]
|
if [ -d "./target/" ]
|
||||||
then
|
then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user