-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.local
30 lines (29 loc) · 1.62 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
24
25
26
27
28
29
30
# 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_API_DOMAIN -> local: http://localhost:3000 || dev: https://dev-api.solun.pm || prod: https://api.solun.pm
# SOLUN_API_KEY -> Solun api key for access specific routes
# 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_WEBMAIL_AUTH_DOMAIN -> local: http://localhost:3000/auth/ || dev: https://dev-mail.solun.pm/auth/ || prod: https://mail.solun.pm/auth/
# 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)
NEXT_PUBLIC_SITE_KEY="xyz"
CAPTCHA_KEY="xyz"
MONGODB_URL="mongodb://127.0.0.1:27017/solun"
JWT_SECRET_KEY="solunSecretBoomBoomTest"
MAILSERVER_BASEURL="http://172.17.0.130"
MAILSERVER_API_KEY="ApiKey"
NEXT_PUBLIC_API_DOMAIN="http://localhost:3000"
SOLUN_API_KEY="test"
NEXT_PUBLIC_MAIN_DOMAIN="https://solun.pm"
NEXT_PUBLIC_AUTH_DOMAIN="https://dev-auth.solun.pm"
NEXT_PUBLIC_WEBMAIL_DOMAIN="https://dev-mail.solun.pm"
NEXT_PUBLIC_WEBMAIL_AUTH_DOMAIN="https://dev-mail.solun.pm/auth/"
NEXT_PUBLIC_MAIL_HOST="mail.solun.pm"
NEXT_PUBLIC_IMAP_PORT=143
NEXT_PUBLIC_SMTP_PORT=465