Skip to content

Instantly share code, notes, and snippets.

View ghemulyanto's full-sized avatar
💭
Learning everyday

Tri Mulyanto ghemulyanto

💭
Learning everyday
  • Alfagift
  • Tangerang Selatan
View GitHub Profile

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@ghemulyanto
ghemulyanto / application.properties
Created April 21, 2021 10:26 — forked from DengYiping/application.properties
Spring Application Properties for MariaDB
#Database Configuration
spring.datasource.url=jdbc:mariadb://localhost:3306/billboard
spring.datasource.username=root
spring.datasource.password=
spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
#Hibernate Configuration
# Show or not log for each sql query
spring.jpa.show-sql=true