feat: scaffold centralized Spring Boot backend project

This commit is contained in:
Amudieshwar A G
2026-07-21 14:04:30 +05:30
parent 9dda0a93b9
commit 27999a5bea
4 changed files with 134 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# ─── DATABASE CONNECTION CONFIGURATION ───
spring.datasource.url=jdbc:postgresql://localhost:5432/rit_freshers_hub?sslmode=disable
spring.datasource.username=postgres
spring.datasource.password=your_local_postgres_password_here
# ─── JPA / HIBERNATE SETTINGS ───
spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
spring.jpa.hibernate.ddl-auto=validate
spring.jpa.show-sql=true
spring.jpa.properties.hibernate.format_sql=true
# ─── SERVER PORT ───
server.port=8080