Backend for ExpenEase based on SpringBoot.
Documentation for APIs in Postman
Move to project directory
cd Expense-Tracker-BE
Add an application.properties file in src/main/resources/
Example for application.properties -
spring.datasource.url=jdbc:mysql://localhost:3306/your-db-name
spring.datasource.username=vyour-username
spring.datasource.password=your-password
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.hibernate.ddl-auto=update
server.servlet.context-path=/api
app.jwt.secret=SECRET-KEY-1
app.salt=SECRET-KEY-2
app.jwt.expiration=EXPIRY-TIME
Run the project
mvn spring-boot:run -e
Backend: Spring Boot
Database: MySql