Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update application.properties #51

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,30 +1,19 @@
# config port and host
server.port=8080
server.address=localhost
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

# config ssl
server.ssl.enabled=true
server.ssl.protocol=TLS
#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

# error URL path
server.error.path=/error
# enable default error page
server.error.whitelabel.enabled=true


# request busy queue length
server.tomcat.accept-count=100


# set console banner character set
spring.banner.charset=UTF-8
# set console banner height
spring.banner.image.height=20


# config database url and credentials
spring.datasource.url=jdbc:postgres://localhost:5432
spring.datasource.username=admin
spring.datasource.password=password
spring.show-sql=true
Loading