Skip to content

Commit

Permalink
feat: update wekan
Browse files Browse the repository at this point in the history
  • Loading branch information
johackim committed May 10, 2024
1 parent 9a19c59 commit f8c54f8
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
4 changes: 2 additions & 2 deletions stacks/wekan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ services:
- MONGO_URL=mongodb://mongo:27017/wekan
- VIRTUAL_HOST=${DOMAIN:-wekan.localhost}
- ROOT_URL=${SCHEME:-https}://${DOMAIN:-wekan.localhost}
- MAIL_URL=${MAIL_URL} # smtp://user:[email protected]:587
- MAIL_FROM=${MAIL_FROM} # [email protected]
- MAIL_URL=smtp://${SMTP_USERNAME}:${SMTP_PASSWORD}@${SMTP_HOST}:${SMTP_PORT:-587}
- MAIL_FROM=${SMTP_FROM:-[email protected]}
deploy:
labels:
- traefik.enable=true
Expand Down
28 changes: 27 additions & 1 deletion templates.json
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,33 @@
"repository": {
"url": "https://github.com/ethibox/awesome-stacks",
"stackfile": "stacks/wekan.yml"
}
},
"env": [
{
"name": "SMTP_HOST",
"label": "SMTP Host"
},
{
"name": "SMTP_PORT",
"label": "SMTP Port",
"value": "587",
"type": "number"
},
{
"name": "SMTP_USERNAME",
"label": "SMTP Username"
},
{
"name": "SMTP_PASSWORD",
"label": "SMTP Password",
"type": "password"
},
{
"name": "SMTP_FROM",
"label": "SMTP From Address",
"type": "email"
}
]
},
{
"type": 2,
Expand Down

0 comments on commit f8c54f8

Please sign in to comment.