forked from t3-innovation-network/desm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
29 lines (23 loc) · 1.09 KB
/
.env.example
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
APP_DOMAIN=http://192.168.1.103:3000
# The name of the Role for the administrator users. It's necessary to define
# in an environment variable, because it's handled by both the frontend and
# the backend. If not specified, it will use "Super Admin".
ADMIN_ROLE_NAME=Super Admin
# The default password to use when creating new users.
# Since the user accounts are not created by the users itselfs, but the
# administrators, the password need to be auto-assigned
DEFAULT_PASS=t3admin
# Secret key used to encode passwords and sensitive information. E.g. 'HS256', 'RS256'
JWT_SECRET=a-strong-password-to-use-as-secret-key-to-encode-and-or-decode
# The algorithm used to encode sensitive information with JWT.
JWT_ALGORITHM=RS256
# Credentials for sending emails from the application
# These credentials are for the email account from which the emails are going
# to be sent (the sender).
MAIL_PASSWORD=apassword
MAIL_USERNAME=t3@mail.org
# Mailgun configuration
MAILGUN_API_KEY=your-mailgun-api-key
MAILGUN_DOMAIN=the-domain-that-serves-your-emails
# The minimum accepted length for passwords
MIN_PASSWORD_LENGTH=8