mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-25 17:41:57 -04:00
15 lines
357 B
TypeScript
15 lines
357 B
TypeScript
export const TEST_CONFIG = {
|
|
appUrl: 'http://localhost:5000',
|
|
keycloakUrl: 'http://localhost:8080',
|
|
realm: 'cleanuparr-test',
|
|
clientId: 'cleanuparr',
|
|
clientSecret: 'test-secret',
|
|
|
|
adminUsername: 'admin',
|
|
adminPassword: 'E2eTestPassword123!',
|
|
|
|
oidcUsername: 'testuser',
|
|
oidcPassword: 'testpass',
|
|
oidcProviderName: 'Keycloak',
|
|
} as const;
|