-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.local
23 lines (22 loc) · 1.16 KB
/
.env.local
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Configuration: #
# MONGODB_URL -> Use the MongoDB Url with the database name
# JWT_SECRET_KEY -> Use a secret key for the JWT
# MAILSERVER_BASEURL -> http://172.17.0.130 - Local IP
# MAILSERVER_API_KEY -> ApiKey
# NEXT_PUBLIC_MAIN_DOMAIN -> local: http://localhost:3000 || dev: https://dev.solun.pm || prod: https://solun.pm
# NEXT_PUBLIC_AUTH_DOMAIN -> local: http://localhost:3000 || dev: https://dev-auth.solun.pm || prod: https://auth.solun.pm
# NEXT_PUBLIC_WEBMAIL_DOMAIN -> local: http://localhost:3000 || dev: https://dev-mail.solun.pm || prod: https://mail.solun.pm
# NEXT_PUBLIC_MAIL_HOST -> Use the mail host (ex: mail.solun.pm)
# NEXT_PUBLIC_IMAP_PORT -> Use the IMAP port (ex: 143)
# NEXT_PUBLIC_SMTP_PORT -> Use the SMTP port (ex: 465)
MONGODB_URL="mongodb://127.0.0.1:27017/solun"
JWT_SECRET_KEY="BoomSecretSolunTest"
MAILSERVER_BASEURL="http://172.17.0.130"
MAILSERVER_API_KEY="ApiKey"
NEXT_PUBLIC_MAIN_DOMAIN='https://solun.pm'
NEXT_PUBLIC_API_DOMAIN='https://api.solun.pm'
NEXT_PUBLIC_AUTH_DOMAIN='http://localhost:3001'
NEXT_PUBLIC_WEBMAIL_DOMAIN='https://dev-mail.solun.pm'
NEXT_PUBLIC_MAIL_HOST='mail.solun.pm'
NEXT_PUBLIC_IMAP_PORT=143
NEXT_PUBLIC_SMTP_PORT=465