2021-12-28 17:24:58 +00:00
|
|
|
|
2022-10-18 23:50:59 +00:00
|
|
|
# THIS is the application properties used when testing in the IDE
|
2024-01-31 16:44:01 +00:00
|
|
|
# or running stand-alone from the command line.
|
|
|
|
# It augments/overrides application.yml in the JAR
|
2022-01-06 04:36:03 +00:00
|
|
|
joinfaces.jsf.webapp-resources-directory=/resources
|
2022-10-19 13:07:18 +00:00
|
|
|
server.servlet.session.timeout=30m
|
2021-12-28 17:24:58 +00:00
|
|
|
|
2021-12-31 13:22:01 +00:00
|
|
|
spring.thymeleaf.enabled=false
|
|
|
|
server.error.whitelabel.enabled=false
|
2021-12-28 17:24:58 +00:00
|
|
|
|
2022-10-18 23:50:59 +00:00
|
|
|
spring.datasource.url=jdbc:mysql://dbase/recipes
|
|
|
|
#jdbc:sqlite:${home}/recipes.db
|
|
|
|
spring.datasource.username=recipes
|
|
|
|
pring.datasource.password=yumyumyum
|
|
|
|
spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
|
2024-02-02 22:43:11 +00:00
|
|
|
|
|
|
|
#Runtime lies and says no longer required, but it defaults to MySQL5.5.0!:
|
|
|
|
spring.jpa.database-platform=org.hibernate.dialect.MySQL8Dialect
|
2022-10-18 23:50:59 +00:00
|
|
|
#org.sqlite.hibernate.dialect.SQLiteDialect
|
2021-12-30 17:43:27 +00:00
|
|
|
#spring.jpa.show-sql: true
|
2022-01-18 14:46:28 +00:00
|
|
|
|
|
|
|
# My special properties
|
2022-01-18 19:28:47 +00:00
|
|
|
gourmet.password.file=${user.home}/.gourmetpw
|
2024-01-31 16:44:01 +00:00
|
|
|
|
2024-02-01 20:52:21 +00:00
|
|
|
# This will override aplication.yml
|
|
|
|
#server.servlet.context-parameters.primefaces.THEME=le-frog
|
2024-02-04 17:05:42 +00:00
|
|
|
|
|
|
|
### HttpSession timeout (note effects on detailEdit idleMonitors)
|
|
|
|
server.servlet.session.timeout=35m
|