-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.development
33 lines (30 loc) · 1.34 KB
/
.env.development
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
################################################################################################
# DO NOT MODIFY THIS FILE, CREATE A FILE ".env.development.local" AND ADD SECRET THERE INSTEAD #
################################################################################################
# The admin username
KEYCLOAK_ADMIN=admin
# The admin password
KEYCLOAK_ADMIN_PASSWORD=admin
# Keycloak host name
KEYCLOAK_HOSTNAME=http://localhost:8888
# Keycloak host path, useful if you are using reverse proxy
KEYCLOAK_HOST_PATH=/
# Database url
DATABASE_URL=jdbc:postgresql://localhost:5432/keycloak
# Database username
DATABASE_USERNAME=admin
# Database password
DATABASE_PASSWORD=
# SMTP host of your email. For example, if you host is outlook, then it is smtp.outlook.com
# Used in Realm settings -> Email -> Connection & Authentication -> Host
SMTP_HOST=
# SMTP port of your email. For example, if you host is outlook, then it is 587
# Used in Realm settings -> Email -> Connection & Authentication -> Port
SMTP_PORT=
# Keycloak will send email (e.g.: for email verification) on behalf of this email.
# Used in Realm settings -> Email -> Connection & Authentication -> Username
# Also used in Realm settings -> Email -> Template -> From
SMTP_EMAIL=
# The password of the email
# Used in Realm settings -> Email -> Connection & Authentication -> Password
SMTP_PASSWORD=