Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ MS_GRAPH_API_TENANT_ID=
MS_GRAPH_API_TOKEN_ENDPOINT=https://localhost:8443/realms/platform-services/protocol/openid-connect/token
MS_GRAPH_API_CLIENT_ID=
MS_GRAPH_API_CLIENT_SECRET=
MS_GRAPH_API_CLIENT_PRIVATE_KEY=
MS_GRAPH_API_CLIENT_CERTIFICATE=
USE_MS_GRAPH_API_PROXY=false

CHES_TOKEN_URL=http://localhost:8080/realms/platform-services/protocol/openid-connect/token
Expand Down
2 changes: 2 additions & 0 deletions app/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ export const MS_GRAPH_API_TOKEN_ENDPOINT =

export const MS_GRAPH_API_CLIENT_ID = process.env.MS_GRAPH_API_CLIENT_ID || AUTH_RESOURCE;
export const MS_GRAPH_API_CLIENT_SECRET = process.env.MS_GRAPH_API_CLIENT_SECRET || AUTH_SECRET;
export const MS_GRAPH_API_CLIENT_PRIVATE_KEY = process.env.MS_GRAPH_API_CLIENT_PRIVATE_KEY;
export const MS_GRAPH_API_CLIENT_CERTIFICATE = process.env.MS_GRAPH_API_CLIENT_CERTIFICATE;
export const MS_GRAPH_API_PROXY_URL = process.env.MS_GRAPH_API_PROXY_URL || 'http://localhost:8000';
export const USE_MS_GRAPH_API_PROXY = process.env.USE_MS_GRAPH_API_PROXY === 'true';

Expand Down
1 change: 1 addition & 0 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@azure/identity": "^4.10.2",
"@faker-js/faker": "^9.0.0",
"@headlessui/react": "2.2.4",
"@hookform/resolvers": "^5.0.1",
Expand Down
212 changes: 212 additions & 0 deletions app/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading