chore: add backend gitignore and remove target class files from git

This commit is contained in:
Amudieshwar A G
2026-07-21 14:31:30 +05:30
parent 4f433f4dba
commit bae794188e
9 changed files with 9 additions and 13 deletions

9
backend/.gitignore vendored Normal file
View File

@@ -0,0 +1,9 @@
/target/
/.settings/
/.classpath
/.project
/.metadata/
/bin/
*.class
.factorypath
.springBeans

View File

@@ -1,13 +0,0 @@
# ─── DATABASE CONNECTION CONFIGURATION ───
spring.datasource.url=jdbc:postgresql://localhost:5432/rit_freshers_hub?sslmode=disable
spring.datasource.username=postgres
spring.datasource.password=Amudiesh22@.
# ─── 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