File tree 3 files changed +25
-1
lines changed
server/api-service/lowcoder-server/src/main/resources
3 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,17 @@ services:
60
60
#
61
61
LOWCODER_API_KEY_SECRET : " 5a41b090758b39b226603177ef48d73ae9839dd458ccb7e66f7e7cc028d5a50b"
62
62
LOWCODER_WORKSPACE_MODE : SAAS
63
+ # Lowcoder notification emails setup
64
+ LOWCODER_ADMIN_SMTP_HOST : smtp.gmail.com
65
+ LOWCODER_ADMIN_SMTP_PORT : 587
66
+ LOWCODER_ADMIN_SMTP_USERNAME :
67
+ LOWCODER_ADMIN_SMTP_PASSWORD :
68
+ LOWCODER_ADMIN_SMTP_AUTH : true
69
+ LOWCODER_ADMIN_SMTP_SSL_ENABLED : false
70
+ LOWCODER_ADMIN_SMTP_STARTTLS_ENABLED : true
71
+ LOWCODER_ADMIN_SMTP_STARTTLS_REQUIRED : true
72
+ # Email used as sender in lost password email
73
+ LOWCODER_EMAIL_NOTIFICATIONS_SENDER : info@localhost
63
74
restart : unless-stopped
64
75
depends_on :
65
76
- mongodb
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ services:
12
12
- " 3443:3443"
13
13
# - "27017:27017"
14
14
environment :
15
+ # Public base url
16
+ LOWCODER_PUBLIC_URL : " http://localhost:3000/"
15
17
# enable services
16
18
LOWCODER_REDIS_ENABLED : " true"
17
19
LOWCODER_MONGODB_ENABLED : " true"
@@ -59,6 +61,17 @@ services:
59
61
LOWCODER_MAX_REQUEST_SIZE : 20m
60
62
LOWCODER_MAX_QUERY_TIMEOUT : 120
61
63
LOWCODER_WORKSPACE_MODE : SAAS
64
+ # Lowcoder notification emails setup
65
+ LOWCODER_ADMIN_SMTP_HOST : smtp.gmail.com
66
+ LOWCODER_ADMIN_SMTP_PORT : 587
67
+ LOWCODER_ADMIN_SMTP_USERNAME :
68
+ LOWCODER_ADMIN_SMTP_PASSWORD :
69
+ LOWCODER_ADMIN_SMTP_AUTH : true
70
+ LOWCODER_ADMIN_SMTP_SSL_ENABLED : false
71
+ LOWCODER_ADMIN_SMTP_STARTTLS_ENABLED : true
72
+ LOWCODER_ADMIN_SMTP_STARTTLS_REQUIRED : true
73
+ # Email used as sender in lost password email
74
+ LOWCODER_EMAIL_NOTIFICATIONS_SENDER : info@localhost
62
75
volumes :
63
76
- ./lowcoder-stacks:/lowcoder-stacks
64
77
- ./lowcoder-stacks/assets:/lowcoder/assets
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ common:
84
84
marketplace :
85
85
private-mode : ${LOWCODER_MARKETPLACE_PRIVATE_MODE:true}
86
86
lowcoder-public-url : ${LOWCODER_PUBLIC_URL:http://localhost:8080}
87
- notifications-email-sender : ${LOWCODER_LOST_PASSWORD_EMAIL_SENDER :info@lowcoder.org }
87
+ notifications-email-sender : ${LOWCODER_EMAIL_NOTIFICATIONS_SENDER :info@localhost }
88
88
89
89
material :
90
90
mongodb-grid-fs :
You can’t perform that action at this time.
0 commit comments