Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
application.properties 1.09 KiB
Newer Older
Daya Adianto's avatar
Daya Adianto committed
# Application configuration
## Warning: Set debug to true only during development and debugging!
debug=true
trace=false

sitodo.motivation.empty=Your list is empty :(
sitodo.motivation.noFinished=You have not finished any of your tasks!
sitodo.motivation.someFinished=You have finished some of your tasks!
sitodo.motivation.halfFinished=You have finished half of your tasks!
sitodo.motivation.allFinished=Congratulations!
sitodo.motivation.fewItems=You have too few tasks!
sitodo.motivation.manyItems=You have too many tasks!
sitodo.motivation.fewItemsThreshold=5
sitodo.motivation.manyItemsThreshold=10

# Database connection configuration
## Warning: The following configurations are for development environment!
##          Use different values when deploying to production environment!
#spring.datasource.url=jdbc:postgresql://localhost:6000/sitodo
#spring.datasource.username=sitodo
#spring.datasource.password=R83Moz74

spring.datasource.url=jdbc:postgresql://${DB_HOST:postgres}:${DB_PORT:5432}/${DB_NAME:sitodo}
spring.datasource.username=${DB_USER:postgres}
spring.datasource.password=${DB_PASSWORD:testpass}