diff --git a/udacity-jwdnd-c1-l5-final-review-solution-master/src/main/resources/application.properties b/udacity-jwdnd-c1-l5-final-review-solution-master/src/main/resources/application.properties index e69de29..2475939 100644 --- a/udacity-jwdnd-c1-l5-final-review-solution-master/src/main/resources/application.properties +++ b/udacity-jwdnd-c1-l5-final-review-solution-master/src/main/resources/application.properties @@ -0,0 +1,18 @@ +server.error.include-message=always +server.error.include-binding-errors=always + +#Please update data source url, username and password properties below +#Sample shown below, `registration` in data source URL property depicts the DB name in database and should be replaced with actual DB name +#spring.datasource.url=jdbc:postgresql://localhost:5432/registration +#spring.datasource.username=postgres +#spring.datasource.password=postgres +spring.datasource.url= +spring.datasource.username= +spring.datasource.password= + +spring.jpa.hibernate.ddl-auto=update +spring.jpa.hibernate.boot.allow_jdbc_metadata_access=false +spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect +spring.jpa.properties.hibernate.format_sql=true + +spring.show-sql=true