-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.conf
More file actions
31 lines (22 loc) · 851 Bytes
/
application.conf
File metadata and controls
31 lines (22 loc) · 851 Bytes
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
31
# SPDX-FileCopyrightText: 2025 Friedrich von Never <friedrich@fornever.me>
#
# SPDX-License-Identifier: MIT
play.http.secret.key = ${HTTP_SECRET_KEY}
play.i18n.langs = ["en"]
feed.limit = 30
db.default.driver = org.postgresql.Driver
db.default.url = ${DATABASE_URL}
play.evolutions.autocommit = false
play.evolutions.db.default.autoApply = ${APPLY_EVOLUTIONS_SILENTLY}
recaptcha.publickey = ${RECAPTCHA_PUBLIC_KEY}
recaptcha.privatekey = ${RECAPTCHA_PRIVATE_KEY}
basicAuth.username = ${BASIC_AUTH_USERNAME}
basicAuth.password = ${BASIC_AUTH_PASSWORD}
approval.smtpHost = ${APPROVAL_SMTP_HOST}
approval.email = ${APPROVAL_EMAIL}
approval.emailPassword = ${APPROVAL_EMAIL_PASSWORD}
play.modules.enabled += "scalikejdbc.PlayModule"
play.filters.enabled += play.filters.hosts.AllowedHostsFilter
play.filters.hosts {
allowed = ["loglist.xyz"]
}