datasource:
    url: ${DB_URL:jdbc:mysql://localhost3306/jwtPractice}
    username: ${DB_USERNAME:root}
    password: ${DB_PASSWORD:1234}

  jpa:
    properties:
      format_sql: true
      hibernate:
        dialect: org.hibernate.dialect.MySQL8Dialect 
    hibernate:
      ddl-auto: create
    show-sql: true
    defer-datasource-initialization: true