Sistema de fidelizacao de clientes com Spring Boot, Thymeleaf e PostgreSQL.
- Java 17+
- Maven 3.8+
- PostgreSQL
DATABASE_URL=jdbc:postgresql://localhost:5432/fidex
DATABASE_USERNAME=postgres
DATABASE_PASSWORD=sua_senha./mvnw spring-boot:runAcesse: http://localhost:8080
docker build -t fidex .
docker run -p 8080:8080 \
-e DATABASE_URL="jdbc:postgresql://host.docker.internal:5432/fidex" \
-e DATABASE_USERNAME="postgres" \
-e DATABASE_PASSWORD="senha" \
fidexfidex/
├── src/main/java/web/fidex/
├── src/main/resources/
├── Dockerfile
└── pom.xml