- Angular 17 with standalone components - Angular Material + Tailwind CSS - OIDC authorization code flow with Authentik - Role-based access control (USER, DEVELOPER, APPROVER, ADMIN) - Dashboard with pending requests, tunnel list, and create mapping - Nginx reverse proxy to backend API - Multi-container Docker Compose setup (frontend, backend, postgres) - Environment-based configuration (local, test, prod)
8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
export const environment = {
|
|
production: false,
|
|
apiUrl: '/cloudflare',
|
|
issuer: 'https://auth.hithomelabs.com/application/o/cftunnels/',
|
|
oauthClientId: 'cftunnels',
|
|
redirectUri: '/login'
|
|
};
|