1
1
server :
2
- port : ${PORT }
2
+ port : ${SIMPLEWORKLIST_PORT }
3
3
error :
4
4
path : /fehler
5
5
compression :
6
6
enabled : false
7
7
min-response-size : 2048
8
+ servlet :
9
+ context-path : " /simpleworklist"
8
10
spring :
11
+ config :
12
+ name : simpleworklist
13
+ liquibase :
14
+ enabled : false
15
+ devtools :
16
+ livereload :
17
+ enabled : ${SIMPLEWORKLIST_DEV_TESTING}
9
18
datasource :
10
- url : jdbc:postgresql://localdbhost :5432//simpleworklist
19
+ url : jdbc:postgresql://localhost :5432//simpleworklist
11
20
username : simpleworklist
12
21
password : simpleworklistpwd
13
22
driverClassName : org.postgresql.Driver
@@ -18,15 +27,15 @@ spring:
18
27
open-in-view : true
19
28
generate-ddl : true
20
29
hibernate :
21
- ddl-auto : ${JPA_DLL_AUTO }
30
+ ddl-auto : ${SIMPLEWORKLIST_JPA_DLL_AUTO }
22
31
properties :
23
32
hibernate :
24
33
dialect : org.hibernate.dialect.PostgreSQL95Dialect
25
34
temp :
26
35
use_jdbc_metadata_defaults : false
27
36
search :
28
37
default :
29
- indexBase : /tmp/simpleworklistsearch
38
+ indexBase : ~/.config/simpleworklist
30
39
session :
31
40
store-type : jdbc
32
41
jdbc :
39
48
woehlke :
40
49
simpleworklist :
41
50
mail :
42
- host : ${MAIL_SMTP_HOST }
43
- port : ${MAIL_SMTP_PORT }
44
- username : ${MAIL_SMTP_USERNAME }
45
- password : ${MAIL_SMTP_PASSWORD }
51
+ host : ${SIMPLEWORKLIST_MAIL_SMTP_HOST }
52
+ port : ${SIMPLEWORKLIST_MAIL_SMTP_PORT }
53
+ username : ${SIMPLEWORKLIST_MAIL_SMTP_USERNAME }
54
+ password : ${SIMPLEWORKLIST_MAIL_SMTP_PASSWORD }
46
55
auth : true
47
56
sslEnable : true
48
57
socketFactoryPort : 465
49
58
socketFactoryClass : javax.net.ssl.SSLSocketFactory
50
59
registration :
51
60
maxRetries : 5
52
61
ttlEmailVerificationRequest : 86400000
53
- urlHost : ${URL_APP_HOST }
54
- mailFrom : ${MAIL_FROM }
62
+ urlHost : ${SIMPLEWORKLIST_URL_APP_HOST }
63
+ mailFrom : ${SIMPLEWORKLIST_MAIL_FROM }
55
64
webMvc :
56
65
controllerPageSize : 10
57
66
staticResourceHandler :
89
98
---
90
99
spring :
91
100
datasource :
92
- url : jdbc:postgresql://localdbhost :5432/simpleworklist
101
+ url : jdbc:postgresql://localhost :5432/simpleworklist
93
102
profiles :
94
103
active : default
0 commit comments