First commit

This commit is contained in:
2025-03-20 10:15:10 +01:00
commit 95956fccd8
20 changed files with 462 additions and 0 deletions

14
env.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly RP_GRPC_CORE_HOST: string
readonly KEYCLOAK_URL: string
readonly KEYCLOAK_REALM: string
readonly KEYCLOAL_CLIENT_ID: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}