-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (36 loc) · 2.13 KB
/
.env.example
File metadata and controls
43 lines (36 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -----------------------------------------------------------------------------
# App Configuration
# -----------------------------------------------------------------------------
# The environment in which the application is running. This should be set to
# 'production' on your live server to enable security features like secure
# cookies. For local development, 'development' is appropriate.
NODE_ENV=development
# The network port on which the Angular dev server will listen for incoming
# connections. Change this if port 3000 is already in use on your system.
PORT=3000
# -----------------------------------------------------------------------------
# ZITADEL OpenID Connect (OIDC) Configuration
# -----------------------------------------------------------------------------
# The full domain URL of your ZITADEL instance. You can find this in your
# ZITADEL organization's settings.
# Example: https://my-org-a1b2c3.zitadel.cloud
NG_APP_ZITADEL_DOMAIN="https://your-zitadel-domain"
# The unique Client ID for your application, obtained from the ZITADEL Console.
# This identifier tells ZITADEL which application is making the request.
NG_APP_ZITADEL_CLIENT_ID="your-zitadel-application-client-id"
# The Client Secret for your application. This is only required if you have
# configured your ZITADEL application as "Confidential". For public clients,
# like single-page apps, this can be left empty.
NG_APP_ZITADEL_CLIENT_SECRET=""
# The full URL where ZITADEL redirects the user after they have authenticated.
# This MUST exactly match one of the "Redirect URIs" you have configured in
# your ZITADEL application settings.
NG_APP_ZITADEL_CALLBACK_URL="http://localhost:3000/auth/callback"
# The internal URL within your application where users are sent after a
# successful login is processed at the callback URL.
# Defaults to "/profile" if not specified.
NG_APP_ZITADEL_POST_LOGIN_URL="/profile"
# The full URL where ZITADEL redirects the user after they have logged out.
# This MUST exactly match one of the "Post Logout Redirect URIs" configured
# in your ZITADEL application settings.
NG_APP_ZITADEL_POST_LOGOUT_URL="http://localhost:3000/auth/logout/callback"