application.properties 467 Bytes

#-----------------------------------------------#
#---------- Spring Database management ---------#
#-----------------------------------------------#
spring.jpa.hibernate.ddl-auto=update
#"create" if the database doesn't exist : it will reinitialize the DB every time the process is restarted
#"update" if the database already exists
spring.datasource.url=jdbc:postgresql://localhost:3306/sql_only
spring.datasource.username=postgres
spring.datasource.password=admin