Skip to content

Commit

Permalink
feat: update keila
Browse files Browse the repository at this point in the history
  • Loading branch information
johackim committed Dec 5, 2024
1 parent d734a2c commit 983e1c5
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 3 deletions.
4 changes: 2 additions & 2 deletions stacks/keila.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
image: pentacent/keila:${VERSION:-0.15.1}
environment:
- KEILA_USER=${ADMIN_EMAIL:[email protected]}
- KEILA_PASSWORD=${KEILA_PASSWORD:-myp@ssw0rd}
- KEILA_PASSWORD=${ADMIN_PASSWORD:-myp@ssw0rd}
- URL_SCHEMA=${URL_SCHEMA:-https}
- URL_HOST=${DOMAIN:-keila.localhost}
- SECRET_KEY_BASE=${SECRET_KEY_BASE:-mys3cr3t} # openssl rand -base64 64
Expand All @@ -14,7 +14,7 @@ services:
- MAILER_SMTP_HOST=${SMTP_HOST}
- MAILER_SMTP_USER=${SMTP_USERNAME}
- MAILER_SMTP_PASSWORD=${SMTP_PASSWORD}
- MAILER_ENABLE_STARTTLS=${SMTP_SSL:-false}
- MAILER_ENABLE_STARTTLS=${SMTP_TLS:-false}
- DB_URL=postgres://keila:myp@ssw0rd@postgres/keila
volumes:
- ${VOLUME_PATH}uploads:/opt/app/uploads
Expand Down
55 changes: 54 additions & 1 deletion templates.json
Original file line number Diff line number Diff line change
Expand Up @@ -2286,7 +2286,60 @@
"repository": {
"url": "https://github.com/ethibox/awesome-stacks",
"stackfile": "stacks/keila.yml"
}
},
"env": [
{
"name": "ADMIN_EMAIL",
"label": "Admin Email",
"type": "email",
"disabled": true
},
{
"name": "ADMIN_PASSWORD",
"label": "Admin password",
"type": "password",
"disabled": true
},
{
"name": "SMTP_HOST",
"label": "SMTP Host"
},
{
"name": "SMTP_PORT",
"label": "SMTP Port",
"value": "587",
"type": "number"
},
{
"name": "SMTP_FROM",
"label": "SMTP From",
"type": "email"
},
{
"name": "SMTP_USERNAME",
"label": "SMTP Username"
},
{
"name": "SMTP_PASSWORD",
"label": "SMTP password",
"type": "password"
},
{
"name": "SMTP_TLS",
"label": "SMTP TLS",
"type": "select",
"select": [
{
"text": "non",
"value": "false"
},
{
"text": "oui",
"value": "true"
}
]
}
]
},
{
"type": 2,
Expand Down

0 comments on commit 983e1c5

Please sign in to comment.