# Server server.port=8080 # MySQL Database spring.datasource.url=jdbc:mysql://127.0.0.1:3306/ev_seminar_db?useSSL=false&serverTimezone=Asia/Hong_Kong&allowPublicKeyRetrieval=true spring.datasource.username=root spring.datasource.password= spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver # JPA spring.jpa.hibernate.ddl-auto=validate spring.jpa.show-sql=true spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQLDialect # JWT jwt.secret=YourSuperSecretKeyForJWTTokenGenerationMustBeAtLeast256BitsLong2026 jwt.expiration-ms=86400000 # Gmail SMTP — fill in your real Gmail and App Password here spring.mail.host=smtp.gmail.com spring.mail.port=465 spring.mail.username=kinetichk2026@gmail.com spring.mail.password=okszebopdsobaaxj spring.mail.properties.mail.smtp.auth=true spring.mail.properties.mail.smtp.ssl.enable=true spring.mail.properties.mail.smtp.starttls.enable=false spring.mail.properties.mail.smtp.starttls.required=false # Thymeleaf (for email templates only) spring.thymeleaf.check-template-location=true