feat(fullstack): Add docker-compose files, improve local development

This commit is contained in:
2025-11-17 11:28:01 +01:00
parent 53b3e944b4
commit 3dcadc21ba
5 changed files with 226 additions and 51 deletions

View File

@@ -7,15 +7,15 @@ export default defineNuxtConfig({
clientProxyBasePath: 'NOT_SET',
serverApiBaseUrl: 'NOT_SET',
serverApiBasePath: 'NOT_SET',
keycloakTokenUrl: 'http://localhost:7080/realms/legalconsenthub/protocol/openid-connect/token'
keycloakTokenUrl: 'NOT_SET'
},
oauth: {
keycloak: {
clientId: 'legalconsenthub',
clientSecret: 'mROUAVlg3c0hepNt182FJgg6dEYsomc7',
realm: 'legalconsenthub',
serverUrl: 'http://localhost:7080',
redirectURL: 'http://localhost:3001/auth/keycloak',
clientId: 'NOT_SET',
clientSecret: 'NOT_SET',
realm: 'NOT_SET',
serverUrl: 'NOT_SET',
redirectURL: 'NOT_SET',
scope: ['openid', 'organization']
}
}