A clean and scalable Spring Boot + Kotlin backend for ecommerce backend.
- Spring Boot with Kotlin
This project requires a PostgreSQL database before the app can start.
# Linux/macOS
sudo systemctl status postgresql
# Or check if the server is ready
pg_isreadypsql -U postgres
CREATE DATABASE furniflux;
\qOr in one line:
createdb -U postgres furnifluxEnsure your application.properties matches your local setup:
spring.datasource.url=jdbc:postgresql://localhost:5432/furniflux
spring.datasource.username=postgres
spring.datasource.password=your_passwordIf you're using environment variables or a
.envfile, those will take precedence overapplication.properties.