Refactor project instructions and structure for monorepo setup
- Updated Step 1 to scaffold a monorepo structure for both backend and frontend. - Renamed dependencies and adjusted project structure in INSTRUCTIONS.md. - Added frontend dependencies and outlined the React application structure. - Revised authentication method from API key to JWT for enhanced security. - Created detailed instructions for frontend development, including page structure and API integration. - Added steps for Docker configuration, including an all-in-one Docker image for deployment. - Implemented CI/CD workflows for automated testing and Docker Hub publishing.
This commit is contained in:
794
INSTRUCTIONS.md
794
INSTRUCTIONS.md
@@ -37,7 +37,7 @@ employee is an AI-powered entity that:
|
||||
| Step | Description | Status |
|
||||
|------|-----------------------------------------|-------------|
|
||||
| 0 | Define project & write CLAUDE.md | ✅ Done |
|
||||
| 1 | Scaffold project structure | ⬜ Pending |
|
||||
| 1 | Scaffold monorepo structure | ⬜ Pending |
|
||||
| 2 | Domain model (JPA entities) | ⬜ Pending |
|
||||
| 3 | Repositories | ⬜ Pending |
|
||||
| 4 | Email Reader Service (IMAP) | ⬜ Pending |
|
||||
@@ -46,9 +46,12 @@ employee is an AI-powered entity that:
|
||||
| 7 | Email Sender Service (SMTP) | ⬜ Pending |
|
||||
| 8 | Scheduler (trigger per entity) | ⬜ Pending |
|
||||
| 9 | REST Controllers & DTOs | ⬜ Pending |
|
||||
| 10 | Security (API Key auth) | ⬜ Pending |
|
||||
| 11 | Unit & integration tests | ⬜ Pending |
|
||||
| 12 | Docker & deployment config | ⬜ Pending |
|
||||
| 10 | Authentication (JWT login) | ⬜ Pending |
|
||||
| 11 | React Frontend | ⬜ Pending |
|
||||
| 12 | Unit & Integration Tests | ⬜ Pending |
|
||||
| 13 | Docker Compose (dev + prod) | ⬜ Pending |
|
||||
| 14 | All-in-one Docker image | ⬜ Pending |
|
||||
| 15 | CI/CD — GitHub Actions + Docker Hub | ⬜ Pending |
|
||||
|
||||
---
|
||||
|
||||
@@ -77,36 +80,51 @@ employee is an AI-powered entity that:
|
||||
|
||||
---
|
||||
|
||||
## Step 1 — Scaffold the Project Structure
|
||||
## Step 1 — Scaffold the Monorepo Structure
|
||||
|
||||
**Goal:** Generate the full Gradle project skeleton with all dependencies configured.
|
||||
**Goal:** Create the full project skeleton for both backend and frontend, with all
|
||||
dependencies configured and the root-level Docker/CI files in place.
|
||||
|
||||
**What the AI should create:**
|
||||
|
||||
```
|
||||
condado-news-letter/
|
||||
├── build.gradle.kts
|
||||
├── settings.gradle.kts
|
||||
├── gradle/wrapper/
|
||||
│ ├── gradle-wrapper.jar
|
||||
│ └── gradle-wrapper.properties
|
||||
├── gradlew
|
||||
├── gradlew.bat
|
||||
├── .gitignore
|
||||
├── .env.example
|
||||
└── src/
|
||||
├── main/
|
||||
│ ├── kotlin/com/condado/newsletter/
|
||||
│ │ └── CondadoApplication.kt
|
||||
│ └── resources/
|
||||
│ ├── application.yml
|
||||
│ └── application-dev.yml
|
||||
└── test/
|
||||
└── kotlin/com/condado/newsletter/
|
||||
└── CondadoApplicationTests.kt
|
||||
├── .gitignore
|
||||
├── docker-compose.yml
|
||||
├── docker-compose.prod.yml
|
||||
├── Dockerfile.allinone
|
||||
├── nginx/
|
||||
│ └── nginx.conf
|
||||
├── .github/
|
||||
│ └── workflows/
|
||||
│ ├── ci.yml
|
||||
│ └── publish.yml
|
||||
├── backend/
|
||||
│ ├── Dockerfile
|
||||
│ ├── build.gradle.kts
|
||||
│ ├── settings.gradle.kts
|
||||
│ ├── gradlew / gradlew.bat
|
||||
│ ├── gradle/wrapper/
|
||||
│ └── src/main/kotlin/com/condado/newsletter/
|
||||
│ └── CondadoApplication.kt
|
||||
│ └── src/main/resources/
|
||||
│ ├── application.yml
|
||||
│ └── application-dev.yml
|
||||
│ └── src/test/kotlin/com/condado/newsletter/
|
||||
│ └── CondadoApplicationTests.kt
|
||||
└── frontend/
|
||||
├── Dockerfile
|
||||
├── package.json
|
||||
├── vite.config.ts
|
||||
├── tsconfig.json
|
||||
├── index.html
|
||||
└── src/
|
||||
├── main.tsx
|
||||
└── App.tsx
|
||||
```
|
||||
|
||||
**Dependencies to include in `build.gradle.kts`:**
|
||||
**Backend dependencies (`backend/build.gradle.kts`):**
|
||||
|
||||
| Dependency | Purpose |
|
||||
|-----------------------------------------|----------------------------------------------|
|
||||
@@ -114,9 +132,10 @@ condado-news-letter/
|
||||
| `spring-boot-starter-data-jpa` | Database access (JPA/Hibernate) |
|
||||
| `spring-boot-starter-mail` | Email sending via SMTP |
|
||||
| `spring-boot-starter-validation` | DTO validation |
|
||||
| `spring-boot-starter-security` | API key authentication |
|
||||
| `spring-boot-starter-security` | JWT authentication |
|
||||
| `jjwt-api`, `jjwt-impl`, `jjwt-jackson` | JWT creation and validation (JJWT library) |
|
||||
| `postgresql` | PostgreSQL JDBC driver |
|
||||
| `jakarta.mail` / `angus-mail` | IMAP email reading |
|
||||
| `angus-mail` | IMAP email reading (Jakarta Mail impl) |
|
||||
| `springdoc-openapi-starter-webmvc-ui` | Swagger UI / OpenAPI docs |
|
||||
| `kotlin-reflect` | Required by Spring for Kotlin |
|
||||
| `jackson-module-kotlin` | JSON serialization for Kotlin |
|
||||
@@ -125,32 +144,42 @@ condado-news-letter/
|
||||
| `mockk` | Kotlin mocking library |
|
||||
| `springmockk` | MockK integration for Spring |
|
||||
|
||||
**`.env.example` should contain:**
|
||||
```env
|
||||
SPRING_DATASOURCE_URL=jdbc:postgresql://localhost:5432/condado
|
||||
SPRING_DATASOURCE_USERNAME=postgres
|
||||
SPRING_DATASOURCE_PASSWORD=postgres
|
||||
MAIL_HOST=smtp.example.com
|
||||
MAIL_PORT=587
|
||||
MAIL_USERNAME=company@example.com
|
||||
MAIL_PASSWORD=secret
|
||||
IMAP_HOST=imap.example.com
|
||||
IMAP_PORT=993
|
||||
IMAP_INBOX_FOLDER=INBOX
|
||||
OPENAI_API_KEY=sk-...
|
||||
OPENAI_MODEL=gpt-4o
|
||||
API_KEY=change-me
|
||||
```
|
||||
**Frontend dependencies (`frontend/package.json`):**
|
||||
|
||||
| Package | Purpose |
|
||||
|-------------------------------|------------------------------------------|
|
||||
| `react`, `react-dom` | Core React |
|
||||
| `typescript` | TypeScript |
|
||||
| `vite` | Build tool and dev server |
|
||||
| `@vitejs/plugin-react` | Vite React plugin |
|
||||
| `react-router-dom` | Client-side routing |
|
||||
| `@tanstack/react-query` | Server state management |
|
||||
| `axios` | HTTP client |
|
||||
| `tailwindcss`, `postcss`, `autoprefixer` | Styling |
|
||||
| `@radix-ui/*`, `shadcn/ui` | UI component library |
|
||||
| `lucide-react` | Icon library (used by shadcn) |
|
||||
| `vitest` | Test runner |
|
||||
| `@testing-library/react` | Component testing |
|
||||
| `@testing-library/jest-dom` | DOM matchers |
|
||||
| `jsdom` | Browser environment for tests |
|
||||
|
||||
**`.env.example` must contain all variables from the Environment Variables table in `CLAUDE.md`.**
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, generate the full `build.gradle.kts`, `settings.gradle.kts`,
|
||||
> `application.yml`, `application-dev.yml`, `.gitignore`, `.env.example`, and the main
|
||||
> application entry point `CondadoApplication.kt`."
|
||||
> "Using the CLAUDE.md context, scaffold the full monorepo. Create the backend Gradle project
|
||||
> with all dependencies, the frontend Vite+React project with all packages, the root `.env.example`,
|
||||
> `.gitignore`, placeholder `docker-compose.yml`, `docker-compose.prod.yml`, `Dockerfile.allinone`,
|
||||
> `nginx/nginx.conf`, and GitHub Actions workflow stubs at `.github/workflows/ci.yml` and
|
||||
> `.github/workflows/publish.yml`. Do not implement business logic yet — just the skeleton."
|
||||
|
||||
**Done when:**
|
||||
- [ ] `./gradlew build` runs successfully (compile only, no logic yet).
|
||||
- [ ] Application starts with `./gradlew bootRun` without errors.
|
||||
- [ ] Swagger UI is accessible at `http://localhost:8080/swagger-ui.html`.
|
||||
- [ ] `cd backend && ./gradlew build` compiles with no errors.
|
||||
- [ ] `cd frontend && npm install && npm run build` succeeds.
|
||||
- [ ] Application starts with `./gradlew bootRun` (backend) without errors.
|
||||
- [ ] `npm run dev` starts the Vite dev server.
|
||||
- [ ] `docker compose up --build` starts all containers.
|
||||
|
||||
---
|
||||
|
||||
---
|
||||
|
||||
@@ -429,80 +458,319 @@ as a comma-separated string in `application.yml` under `app.recipients`. This ca
|
||||
|
||||
---
|
||||
|
||||
## Step 10 — Security (API Key Authentication)
|
||||
## Step 10 — Authentication (JWT Login)
|
||||
|
||||
**Goal:** Protect all API endpoints with a simple API key header.
|
||||
**Goal:** Implement the single-admin JWT login that protects all API endpoints.
|
||||
|
||||
**Approach:**
|
||||
- Spring Security with a custom `OncePerRequestFilter`.
|
||||
- Clients must send `X-API-KEY: <value>` header.
|
||||
- Key is read from `API_KEY` environment variable.
|
||||
- Swagger UI and OpenAPI spec (`/swagger-ui.html`, `/v3/api-docs/**`) are public.
|
||||
- `POST /api/auth/login` accepts `{ "password": "..." }`, validates against `APP_PASSWORD` env var.
|
||||
- On success, generates a JWT (signed with `JWT_SECRET`, expiry from `JWT_EXPIRATION_MS`) and
|
||||
sets it as an `httpOnly` cookie in the response.
|
||||
- Spring Security `JwtAuthFilter` (extends `OncePerRequestFilter`) validates the cookie on every
|
||||
protected request.
|
||||
- Public paths: `POST /api/auth/login`, `/swagger-ui.html`, `/v3/api-docs/**`.
|
||||
- There is **no user table** — the password lives only in the environment variable.
|
||||
|
||||
**Classes to create:**
|
||||
- `AuthController` — `POST /api/auth/login` endpoint
|
||||
- `AuthService` — validates password, generates JWT
|
||||
- `JwtService` — signs and validates JWT tokens
|
||||
- `JwtAuthFilter` — reads cookie, validates JWT, sets `SecurityContext`
|
||||
- `SecurityConfig` — Spring Security HTTP config (permit login + swagger, protect everything else)
|
||||
|
||||
**DTOs:**
|
||||
- `LoginRequest` — `{ "password": String }`
|
||||
- `AuthResponse` — `{ "message": String }` (cookie is set on the response; no token in body)
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, add API key authentication with Spring Security. Create a
|
||||
> custom filter that checks the `X-API-KEY` header against the `API_KEY` env var. Swagger UI
|
||||
> paths must be excluded from authentication."
|
||||
> "Using the CLAUDE.md context, implement JWT authentication for the single-admin model.
|
||||
> Create `AuthController`, `AuthService`, `JwtService`, `JwtAuthFilter`, and `SecurityConfig`.
|
||||
> `POST /api/auth/login` validates against `APP_PASSWORD` env var and returns a JWT in an
|
||||
> httpOnly cookie. All other endpoints require the JWT cookie. Swagger UI is public."
|
||||
|
||||
**Done when:**
|
||||
- [ ] All endpoints return `401` without the correct `X-API-KEY` header.
|
||||
- [ ] Swagger UI is still accessible without auth.
|
||||
- [ ] API key is never hardcoded.
|
||||
- [ ] `POST /api/auth/login` with correct password sets an `httpOnly` JWT cookie and returns `200`.
|
||||
- [ ] `POST /api/auth/login` with wrong password returns `401`.
|
||||
- [ ] All `/api/v1/**` endpoints return `401` without a valid JWT cookie.
|
||||
- [ ] Swagger UI remains accessible without auth.
|
||||
- [ ] Password and JWT secret are never hardcoded.
|
||||
|
||||
---
|
||||
|
||||
## Step 11 — Unit & Integration Tests
|
||||
## Step 11 — React Frontend
|
||||
|
||||
**Goal:** Build the admin SPA that communicates with the backend over the JWT cookie session.
|
||||
|
||||
**Pages to create:**
|
||||
|
||||
| Page | Path | Description |
|
||||
|--------------------|-------------------|----------------------------------------------------------|
|
||||
| `LoginPage` | `/login` | Password input form → calls `POST /api/auth/login` |
|
||||
| `DashboardPage` | `/` | Overview: entity count, recent dispatch log summary |
|
||||
| `EntitiesPage` | `/entities` | List, create, edit, delete, toggle active virtual entities|
|
||||
| `LogsPage` | `/logs` | Paginated dispatch logs with status badges and full details|
|
||||
|
||||
**Structure under `frontend/src/`:**
|
||||
```
|
||||
api/
|
||||
authApi.ts — login, logout calls
|
||||
entitiesApi.ts — CRUD for VirtualEntity
|
||||
logsApi.ts — fetch DispatchLog records
|
||||
components/
|
||||
EntityCard.tsx — card for a single entity
|
||||
LogRow.tsx — row for a dispatch log entry
|
||||
ProtectedRoute.tsx — redirects to /login if no valid session
|
||||
NavBar.tsx — top navigation bar
|
||||
pages/
|
||||
LoginPage.tsx
|
||||
DashboardPage.tsx
|
||||
EntitiesPage.tsx
|
||||
LogsPage.tsx
|
||||
router/
|
||||
index.tsx — React Router config with lazy-loaded routes
|
||||
```
|
||||
|
||||
**Key rules:**
|
||||
- All server state via **React Query** — no `useState` for API data.
|
||||
- All API calls go through `src/api/` — never call `axios` directly in a component.
|
||||
- Use **shadcn/ui** for all UI components (Button, Input, Table, Badge, Dialog, etc.).
|
||||
- `ProtectedRoute` checks for a live backend session by calling `GET /api/auth/me`
|
||||
(add this endpoint to `AuthController`).
|
||||
- Login form submits to `POST /api/auth/login` — on success React Query invalidates and
|
||||
React Router navigates to `/`.
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, build the React frontend. Create all four pages (Login,
|
||||
> Dashboard, Entities, Logs) with React Query for data fetching, shadcn/ui for components,
|
||||
> and React Router for navigation. Implement `ProtectedRoute` using `GET /api/auth/me`.
|
||||
> All API calls must go through the `src/api/` layer."
|
||||
|
||||
**Done when:**
|
||||
- [ ] `npm run build` succeeds with no TypeScript errors.
|
||||
- [ ] `npm run dev` serves the app and login flow works end-to-end.
|
||||
- [ ] Unauthenticated users are redirected to `/login`.
|
||||
- [ ] Entities can be created, edited, toggled active, and deleted via the UI.
|
||||
- [ ] Dispatch logs are visible and filterable by entity.
|
||||
- [ ] All pages have at least a smoke test (`npm run test` passes).
|
||||
|
||||
---
|
||||
|
||||
## Step 12 — Unit & Integration Tests
|
||||
|
||||
**Goal:** Test every service class and one integration test per controller.
|
||||
|
||||
### Backend tests
|
||||
|
||||
| Test Class | Type | Covers |
|
||||
|---------------------------------|-------------|----------------------------------------------|
|
||||
| `EmailReaderServiceTest` | Unit | IMAP fetch, empty list on error |
|
||||
| `PromptBuilderServiceTest` | Unit | Prompt matches template, fields substituted |
|
||||
| `AiServiceTest` | Unit | API call mocked, parseResponse parsing |
|
||||
| `EmailSenderServiceTest` | Unit | JavaMailSender called with correct args |
|
||||
| `AiServiceTest` | Unit | API call mocked, `parseResponse` parsing |
|
||||
| `EmailSenderServiceTest` | Unit | `JavaMailSender` called with correct args |
|
||||
| `AuthServiceTest` | Unit | Correct/incorrect password, JWT generation |
|
||||
| `VirtualEntityControllerTest` | Integration | CRUD endpoints, trigger endpoint |
|
||||
| `DispatchLogControllerTest` | Integration | List all, list by entity |
|
||||
|
||||
### Frontend tests
|
||||
|
||||
| Test File | Covers |
|
||||
|---------------------------------|--------------------------------------------------------|
|
||||
| `LoginPage.test.tsx` | Renders, submits form, shows error on wrong password |
|
||||
| `EntitiesPage.test.tsx` | Lists entities, opens create dialog, handles delete |
|
||||
| `authApi.test.ts` | `login()` calls correct endpoint with correct payload |
|
||||
| `entitiesApi.test.ts` | CRUD functions call correct endpoints |
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, generate unit tests for all service classes using MockK, and
|
||||
> integration tests for controllers using `@SpringBootTest` with H2. Follow naming convention
|
||||
> `should_[expectedBehavior]_when_[condition]`."
|
||||
> "Using the CLAUDE.md context, generate unit tests for all backend service classes using MockK,
|
||||
> integration tests for controllers using `@SpringBootTest` with H2, and frontend component and
|
||||
> API layer tests using Vitest + React Testing Library. Follow naming convention
|
||||
> `should_[expectedBehavior]_when_[condition]` for backend tests."
|
||||
|
||||
**Done when:**
|
||||
- [ ] `./gradlew test` passes all tests green.
|
||||
- [ ] Service class coverage ≥ 80%.
|
||||
- [ ] `./gradlew test` passes all backend tests green.
|
||||
- [ ] Backend service class coverage ≥ 80%.
|
||||
- [ ] `npm run test` passes all frontend tests green.
|
||||
|
||||
---
|
||||
|
||||
## Step 12 — Docker & Deployment Config
|
||||
## Step 13 — Docker Compose (Dev + Prod)
|
||||
|
||||
**Goal:** Containerize the app and provide a local dev stack.
|
||||
**Goal:** Containerize both services and wire them together for local dev and production.
|
||||
|
||||
**Files to create / update:**
|
||||
|
||||
**Files to create:**
|
||||
```
|
||||
condado-news-letter/
|
||||
├── Dockerfile # Multi-stage build
|
||||
├── docker-compose.yml # App + PostgreSQL + Mailhog (dev SMTP/IMAP)
|
||||
└── docker-compose.prod.yml # App + PostgreSQL only
|
||||
├── backend/Dockerfile # Multi-stage: Gradle build → slim JRE runtime
|
||||
├── frontend/Dockerfile # Multi-stage: Node build → Nginx static file server
|
||||
├── nginx/nginx.conf # Serve SPA + proxy /api to backend
|
||||
├── docker-compose.yml # Dev: Nginx + Backend + PostgreSQL + Mailhog
|
||||
└── docker-compose.prod.yml # Prod: Nginx + Backend + PostgreSQL (no Mailhog)
|
||||
```
|
||||
|
||||
**Notes:**
|
||||
- Use [Mailhog](https://github.com/mailhog/MailHog) in dev to capture outgoing emails
|
||||
(SMTP on port 1025, web UI on port 8025).
|
||||
- For IMAP in dev, consider [Greenmail](https://greenmail-mail-test.github.io/greenmail/) as
|
||||
a local IMAP server for end-to-end testing.
|
||||
- Use [Mailhog](https://github.com/mailhog/MailHog) in dev (SMTP port 1025, web UI port 8025).
|
||||
- The `nginx` service serves the built React SPA and proxies `/api/**` to `backend:8080`.
|
||||
- Backend and Postgres communicate over an internal Docker network.
|
||||
- Env vars come from `.env` at the repo root (copied from `.env.example`).
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, create a multi-stage `Dockerfile` for the Spring Boot app, a
|
||||
> `docker-compose.yml` for local dev (PostgreSQL + Mailhog + Greenmail), and a
|
||||
> `docker-compose.prod.yml` for production (PostgreSQL only, env vars from host)."
|
||||
> "Using the CLAUDE.md context, create multi-stage Dockerfiles for the backend and frontend,
|
||||
> an `nginx/nginx.conf` that serves the React SPA and proxies `/api` to the backend, a
|
||||
> `docker-compose.yml` for dev (includes Mailhog), and a `docker-compose.prod.yml` for
|
||||
> production. Use `.env` at the repo root for all env vars."
|
||||
|
||||
**Done when:**
|
||||
- [ ] `docker-compose up` starts the full stack.
|
||||
- [ ] App connects to PostgreSQL container.
|
||||
- [ ] `docker compose up --build` starts all services without errors.
|
||||
- [ ] `http://localhost` serves the React SPA.
|
||||
- [ ] `http://localhost/api/v1/virtual-entities` is proxied to the backend.
|
||||
- [ ] Outgoing emails appear in Mailhog at `http://localhost:8025`.
|
||||
- [ ] `docker build -t condado-newsletter .` succeeds.
|
||||
- [ ] `docker compose -f docker-compose.prod.yml up --build` works (no Mailhog).
|
||||
|
||||
---
|
||||
|
||||
## Step 14 — All-in-one Docker Image
|
||||
|
||||
**Goal:** Build a single Docker image that runs the entire stack (Nginx + Spring Boot + PostgreSQL)
|
||||
under Supervisor, deployable with a single `docker run` command.
|
||||
|
||||
**File to create:** `Dockerfile.allinone` at the repo root.
|
||||
|
||||
**What the image bundles:**
|
||||
- **Nginx** — serves the React SPA and proxies `/api` to Spring Boot
|
||||
- **Spring Boot** — the backend (from the multi-stage backend build)
|
||||
- **PostgreSQL** — embedded database
|
||||
- **Supervisor** — starts and supervises all three processes
|
||||
|
||||
**Base approach:**
|
||||
1. Stage 1: Build frontend (`node:20-alpine` → `npm run build`)
|
||||
2. Stage 2: Build backend (`gradle:8-jdk21-alpine` → `./gradlew bootJar`)
|
||||
3. Stage 3: Final image (`ubuntu:24.04` or `debian:bookworm-slim`)
|
||||
- Install: `nginx`, `postgresql`, `supervisor`, `openjdk-21-jre-headless`
|
||||
- Copy frontend build → `/usr/share/nginx/html/`
|
||||
- Copy backend JAR → `/app/app.jar`
|
||||
- Copy `nginx/nginx.conf` → `/etc/nginx/nginx.conf`
|
||||
- Add a `supervisord.conf` that starts all three processes
|
||||
- Add an `entrypoint.sh` that initialises the PostgreSQL data directory on first run
|
||||
and sets `SPRING_DATASOURCE_URL=jdbc:postgresql://localhost:5432/condado`
|
||||
|
||||
**Supervisor config (`supervisord.conf`):**
|
||||
```ini
|
||||
[supervisord]
|
||||
nodaemon=true
|
||||
|
||||
[program:postgres]
|
||||
command=/usr/lib/postgresql/16/bin/postgres -D /var/lib/postgresql/data
|
||||
user=postgres
|
||||
autostart=true
|
||||
autorestart=true
|
||||
|
||||
[program:backend]
|
||||
command=java -jar /app/app.jar
|
||||
autostart=true
|
||||
autorestart=true
|
||||
startsecs=10
|
||||
|
||||
[program:nginx]
|
||||
command=/usr/sbin/nginx -g "daemon off;"
|
||||
autostart=true
|
||||
autorestart=true
|
||||
```
|
||||
|
||||
**Minimal run command (from `CLAUDE.md`):**
|
||||
```bash
|
||||
docker run -d \
|
||||
-p 80:80 \
|
||||
-e APP_PASSWORD=yourpassword \
|
||||
-e JWT_SECRET=yoursecret \
|
||||
-e OPENAI_API_KEY=sk-... \
|
||||
-e MAIL_HOST=smtp.example.com \
|
||||
-e MAIL_PORT=587 \
|
||||
-e MAIL_USERNAME=company@example.com \
|
||||
-e MAIL_PASSWORD=secret \
|
||||
-e IMAP_HOST=imap.example.com \
|
||||
-e IMAP_PORT=993 \
|
||||
-e APP_RECIPIENTS=friend1@example.com,friend2@example.com \
|
||||
-v condado-data:/var/lib/postgresql/data \
|
||||
<dockerhub-user>/condado-newsletter:latest
|
||||
```
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, create `Dockerfile.allinone` at the repo root. It must be a
|
||||
> multi-stage build: stage 1 builds the frontend, stage 2 builds the backend, stage 3 assembles
|
||||
> everything into a single Ubuntu/Debian image with Nginx, PostgreSQL, Spring Boot, and Supervisor.
|
||||
> Include an `entrypoint.sh` that initialises the PostgreSQL data dir on first run."
|
||||
|
||||
**Done when:**
|
||||
- [ ] `docker build -f Dockerfile.allinone -t condado-newsletter .` succeeds.
|
||||
- [ ] `docker run -p 80:80 -e APP_PASSWORD=test -e JWT_SECRET=testsecret ... condado-newsletter`
|
||||
serves the app at `http://localhost`.
|
||||
- [ ] Data persists across container restarts when a volume is mounted.
|
||||
- [ ] All three processes (nginx, java, postgres) are visible in `docker exec ... supervisorctl status`.
|
||||
|
||||
---
|
||||
|
||||
## Step 15 — CI/CD (GitHub Actions + Docker Hub)
|
||||
|
||||
**Goal:** Automate testing on every PR and publish the all-in-one image to Docker Hub on every
|
||||
merge to `main`.
|
||||
|
||||
**Files to create:**
|
||||
```
|
||||
.github/
|
||||
└── workflows/
|
||||
├── ci.yml — run backend + frontend tests on every push / PR
|
||||
└── publish.yml — build Dockerfile.allinone and push to Docker Hub on push to main
|
||||
```
|
||||
|
||||
### `ci.yml` — Continuous Integration
|
||||
|
||||
**Triggers:** `push` and `pull_request` on any branch.
|
||||
|
||||
**Jobs:**
|
||||
1. **`backend-test`**
|
||||
- `actions/checkout`
|
||||
- `actions/setup-java` (JDK 21)
|
||||
- `./gradlew test` in `backend/`
|
||||
- Upload test results as artifact
|
||||
2. **`frontend-test`**
|
||||
- `actions/checkout`
|
||||
- `actions/setup-node` (Node 20)
|
||||
- `npm ci` then `npm run test` in `frontend/`
|
||||
|
||||
### `publish.yml` — Docker Hub Publish
|
||||
|
||||
**Triggers:** `push` to `main` only.
|
||||
|
||||
**Steps:**
|
||||
1. `actions/checkout`
|
||||
2. `docker/setup-buildx-action`
|
||||
3. `docker/login-action` — uses `DOCKERHUB_USERNAME` + `DOCKERHUB_TOKEN` secrets
|
||||
4. `docker/build-push-action`
|
||||
- File: `Dockerfile.allinone`
|
||||
- Tags:
|
||||
- `${{ secrets.DOCKERHUB_USERNAME }}/condado-newsletter:latest`
|
||||
- `${{ secrets.DOCKERHUB_USERNAME }}/condado-newsletter:${{ github.sha }}`
|
||||
- `push: true`
|
||||
|
||||
**Required GitHub repository secrets:**
|
||||
|
||||
| Secret | Where to set | Value |
|
||||
|----------------------|-------------------------------|----------------------------------|
|
||||
| `DOCKERHUB_USERNAME` | Repo → Settings → Secrets | Your Docker Hub username |
|
||||
| `DOCKERHUB_TOKEN` | Repo → Settings → Secrets | Docker Hub access token (not password) |
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, create `.github/workflows/ci.yml` that runs backend Gradle tests
|
||||
> and frontend Vitest tests on every push/PR. Also create `.github/workflows/publish.yml` that
|
||||
> builds `Dockerfile.allinone` and pushes two tags (`latest` + git SHA) to Docker Hub using
|
||||
> `DOCKERHUB_USERNAME` and `DOCKERHUB_TOKEN` secrets, triggered only on push to `main`."
|
||||
|
||||
**Done when:**
|
||||
- [ ] Every PR shows green CI checks for both backend and frontend tests.
|
||||
- [ ] Merging to `main` triggers an image build and push to Docker Hub.
|
||||
- [ ] Both `latest` and `<git-sha>` tags are visible on Docker Hub after a push.
|
||||
- [ ] Workflow files pass YAML linting (`actionlint` or similar).
|
||||
|
||||
---
|
||||
|
||||
@@ -514,359 +782,11 @@ condado-news-letter/
|
||||
| 2026-03-26 | MockK over Mockito | More idiomatic for Kotlin |
|
||||
| 2026-03-26 | UUID as primary keys | Better for distributed systems |
|
||||
| 2026-03-26 | No Thymeleaf — AI generates email content directly | Email body is AI-produced, no template needed |
|
||||
| 2026-03-26 | API key auth (not JWT) | Simple internal tool, can upgrade to OAuth2 later |
|
||||
| 2026-03-26 | JWT auth (single admin, password via env var) | No user table needed; simple and secure for a private tool |
|
||||
| 2026-03-26 | Use Spring `RestClient` for OpenAI (not WebClient) | Spring Boot 3.2+ preferred HTTP client |
|
||||
| 2026-03-26 | Recipients stored in `app.recipients` config | Simple starting point, can be made dynamic later |
|
||||
| 2026-03-26 | `PromptBuilderService` is the only prompt builder | Keeps prompt logic centralized and testable |
|
||||
| 2026-03-26 | AI must format response as `SUBJECT: ...\nBODY:\n...` | Allows reliable parsing of subject vs body |
|
||||
|
||||
|
||||
---
|
||||
|
||||
## Step 0 — Define the Project & Write CLAUDE.md
|
||||
|
||||
**Goal:** Establish the project scope and create the persistent AI instructions file.
|
||||
|
||||
**What was done:**
|
||||
- Decided on Kotlin + Spring Boot 3.x as the core stack.
|
||||
- Chose PostgreSQL for persistence, Spring Mail for email, and Gradle (Kotlin DSL) as the build tool.
|
||||
- Defined the four core domain concepts: `Subscriber`, `NewsletterIssue`, `Campaign`, `SendLog`.
|
||||
- Created `CLAUDE.md` with project structure, coding standards, naming conventions, and environment variables.
|
||||
|
||||
**Key decisions:**
|
||||
- Use Gradle Kotlin DSL (`build.gradle.kts`) instead of Groovy DSL.
|
||||
- Use MockK for tests, not Mockito (more idiomatic for Kotlin).
|
||||
- Use Springdoc OpenAPI for automatic API documentation.
|
||||
- Thymeleaf for HTML email templates.
|
||||
|
||||
**Output files:**
|
||||
- `CLAUDE.md` ✅
|
||||
|
||||
---
|
||||
|
||||
## Step 1 — Scaffold the Project Structure
|
||||
|
||||
**Goal:** Generate the full Gradle project skeleton with all dependencies configured.
|
||||
|
||||
**What the AI should create:**
|
||||
|
||||
```
|
||||
condado-news-letter/
|
||||
├── build.gradle.kts
|
||||
├── settings.gradle.kts
|
||||
├── gradle/
|
||||
│ └── wrapper/
|
||||
│ ├── gradle-wrapper.jar
|
||||
│ └── gradle-wrapper.properties
|
||||
├── gradlew
|
||||
├── gradlew.bat
|
||||
├── .gitignore
|
||||
├── .env.example
|
||||
└── src/
|
||||
├── main/
|
||||
│ ├── kotlin/com/condado/newsletter/
|
||||
│ │ └── CondadoNewsletterApplication.kt
|
||||
│ └── resources/
|
||||
│ ├── application.yml
|
||||
│ └── application-dev.yml
|
||||
└── test/
|
||||
└── kotlin/com/condado/newsletter/
|
||||
└── CondadoNewsletterApplicationTests.kt
|
||||
```
|
||||
|
||||
**Dependencies to include in `build.gradle.kts`:**
|
||||
|
||||
| Dependency | Purpose |
|
||||
|-----------------------------------------|----------------------------------|
|
||||
| `spring-boot-starter-web` | REST API |
|
||||
| `spring-boot-starter-data-jpa` | Database access (JPA/Hibernate) |
|
||||
| `spring-boot-starter-mail` | Email sending via SMTP |
|
||||
| `spring-boot-starter-validation` | DTO validation |
|
||||
| `spring-boot-starter-thymeleaf` | HTML email templates |
|
||||
| `thymeleaf-extras-spring6` | Thymeleaf + Spring 6 integration |
|
||||
| `postgresql` | PostgreSQL JDBC driver |
|
||||
| `springdoc-openapi-starter-webmvc-ui` | Swagger UI / OpenAPI docs |
|
||||
| `kotlin-reflect` | Required by Spring for Kotlin |
|
||||
| `jackson-module-kotlin` | JSON serialization for Kotlin |
|
||||
| `h2` (testRuntimeOnly) | In-memory DB for tests |
|
||||
| `spring-boot-starter-test` | JUnit 5 test support |
|
||||
| `mockk` | Kotlin mocking library |
|
||||
| `springmockk` | MockK integration for Spring |
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, generate the full `build.gradle.kts`, `settings.gradle.kts`, `application.yml`, `application-dev.yml`, `.gitignore`, `.env.example`, and the main application entry point `CondadoNewsletterApplication.kt`."
|
||||
|
||||
**Done when:**
|
||||
- [ ] `./gradlew build` runs successfully (compile only, no logic yet).
|
||||
- [ ] Application starts with `./gradlew bootRun` without errors.
|
||||
- [ ] Swagger UI is accessible at `http://localhost:8080/swagger-ui.html`.
|
||||
|
||||
---
|
||||
|
||||
## Step 2 — Domain Model (JPA Entities)
|
||||
|
||||
**Goal:** Create all database entities and their relationships.
|
||||
|
||||
**Entities to create:**
|
||||
|
||||
### `Subscriber`
|
||||
| Column | Type | Notes |
|
||||
|-----------------|-------------|-------------------------------|
|
||||
| `id` | UUID | Primary key, auto-generated |
|
||||
| `email` | String | Unique, not null |
|
||||
| `name` | String | Not null |
|
||||
| `subscribed_at` | LocalDateTime | Auto-set on creation |
|
||||
| `active` | Boolean | Default true |
|
||||
|
||||
### `NewsletterIssue`
|
||||
| Column | Type | Notes |
|
||||
|-----------------|-------------|-------------------------------|
|
||||
| `id` | UUID | Primary key, auto-generated |
|
||||
| `title` | String | Not null |
|
||||
| `subject` | String | Email subject line |
|
||||
| `html_body` | Text | Full HTML content |
|
||||
| `created_at` | LocalDateTime | Auto-set on creation |
|
||||
| `status` | Enum | DRAFT / READY / ARCHIVED |
|
||||
|
||||
### `Campaign`
|
||||
| Column | Type | Notes |
|
||||
|---------------------|---------------|------------------------------|
|
||||
| `id` | UUID | Primary key |
|
||||
| `newsletter_issue_id` | UUID (FK) | References `NewsletterIssue` |
|
||||
| `scheduled_at` | LocalDateTime | When to send |
|
||||
| `sent_at` | LocalDateTime | Nullable, set when sent |
|
||||
| `status` | Enum | SCHEDULED / RUNNING / DONE / FAILED |
|
||||
|
||||
### `SendLog`
|
||||
| Column | Type | Notes |
|
||||
|----------------|---------------|-------------------------------|
|
||||
| `id` | UUID | Primary key |
|
||||
| `campaign_id` | UUID (FK) | References `Campaign` |
|
||||
| `subscriber_id`| UUID (FK) | References `Subscriber` |
|
||||
| `sent_at` | LocalDateTime | Nullable |
|
||||
| `status` | Enum | PENDING / SENT / FAILED |
|
||||
| `error_message`| String | Nullable, stores failure reason |
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, create all four JPA entities: `Subscriber`, `NewsletterIssue`, `Campaign`, and `SendLog`. Place them in the `model/` package. Use UUIDs as primary keys, Kotlin data classes where appropriate, and proper JPA annotations."
|
||||
|
||||
**Done when:**
|
||||
- [ ] All four entity files exist in `src/main/kotlin/com/condado/newsletter/model/`.
|
||||
- [ ] `./gradlew build` still compiles cleanly.
|
||||
- [ ] Database tables are auto-created by Hibernate on startup (with `ddl-auto: create-drop` in dev profile).
|
||||
|
||||
---
|
||||
|
||||
## Step 3 — Repositories
|
||||
|
||||
**Goal:** Create Spring Data JPA repositories for each entity.
|
||||
|
||||
**Repositories to create:**
|
||||
|
||||
| Repository | Entity | Custom queries needed |
|
||||
|-----------------------------|-------------------|------------------------------------------------|
|
||||
| `SubscriberRepository` | `Subscriber` | `findByEmail()`, `findAllByActiveTrue()` |
|
||||
| `NewsletterIssueRepository` | `NewsletterIssue` | `findAllByStatus()` |
|
||||
| `CampaignRepository` | `Campaign` | `findAllByStatus()`, `findByScheduledAtBefore()` |
|
||||
| `SendLogRepository` | `SendLog` | `findByCampaignId()`, `countByStatus()` |
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, create the four JPA repositories in the `repository/` package. Each must extend `JpaRepository` and include the custom query methods listed in the instructions."
|
||||
|
||||
**Done when:**
|
||||
- [ ] All four repository files exist in `src/main/kotlin/com/condado/newsletter/repository/`.
|
||||
- [ ] `./gradlew build` compiles cleanly.
|
||||
|
||||
---
|
||||
|
||||
## Step 4 — Services (Business Logic)
|
||||
|
||||
**Goal:** Implement the core business logic for each domain area.
|
||||
|
||||
**Services to create:**
|
||||
|
||||
### `SubscriberService`
|
||||
- `subscribe(dto: SubscriberCreateDto): Subscriber` — register a new subscriber
|
||||
- `unsubscribe(email: String)` — set `active = false`
|
||||
- `listActive(): List<Subscriber>` — get all active subscribers
|
||||
- `findByEmail(email: String): Subscriber`
|
||||
|
||||
### `NewsletterIssueService`
|
||||
- `createIssue(dto: NewsletterIssueCreateDto): NewsletterIssue`
|
||||
- `updateIssue(id: UUID, dto: NewsletterIssueUpdateDto): NewsletterIssue`
|
||||
- `archiveIssue(id: UUID)`
|
||||
- `listIssues(status: IssueStatus?): List<NewsletterIssue>`
|
||||
|
||||
### `CampaignService`
|
||||
- `scheduleCampaign(dto: CampaignCreateDto): Campaign`
|
||||
- `cancelCampaign(id: UUID)`
|
||||
- `listCampaigns(status: CampaignStatus?): List<Campaign>`
|
||||
- `triggerCampaign(id: UUID)` — manually kick off sending
|
||||
|
||||
### `EmailService`
|
||||
- `sendNewsletterEmail(subscriber: Subscriber, issue: NewsletterIssue): Boolean`
|
||||
- Uses `JavaMailSender` and Thymeleaf template engine
|
||||
- Returns `true` on success, `false` on failure (logs error)
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, create the four service classes: `SubscriberService`, `NewsletterIssueService`, `CampaignService`, and `EmailService`. Place them in the `service/` package. Follow all coding standards from CLAUDE.md."
|
||||
|
||||
**Done when:**
|
||||
- [ ] All four service files exist in `src/main/kotlin/com/condado/newsletter/service/`.
|
||||
- [ ] `./gradlew build` compiles cleanly.
|
||||
|
||||
---
|
||||
|
||||
## Step 5 — REST Controllers & DTOs
|
||||
|
||||
**Goal:** Expose the service layer as a REST API with proper request/response DTOs.
|
||||
|
||||
**Controllers to create:**
|
||||
|
||||
| Controller | Base Path | Methods |
|
||||
|-------------------------------|----------------------------|-----------------------------------|
|
||||
| `SubscriberController` | `/api/v1/subscribers` | `POST`, `GET`, `DELETE /{email}` |
|
||||
| `NewsletterIssueController` | `/api/v1/newsletter-issues`| `POST`, `GET`, `PUT /{id}`, `DELETE /{id}` |
|
||||
| `CampaignController` | `/api/v1/campaigns` | `POST`, `GET`, `POST /{id}/trigger`, `DELETE /{id}` |
|
||||
|
||||
**DTOs to create (in `dto/` package):**
|
||||
- `SubscriberCreateDto`, `SubscriberResponseDto`
|
||||
- `NewsletterIssueCreateDto`, `NewsletterIssueUpdateDto`, `NewsletterIssueResponseDto`
|
||||
- `CampaignCreateDto`, `CampaignResponseDto`
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, create the REST controllers and all DTOs. Controllers go in `controller/`, DTOs in `dto/`. All controllers must return `ResponseEntity<T>`. DTOs must use validation annotations."
|
||||
|
||||
**Done when:**
|
||||
- [ ] All controller and DTO files exist.
|
||||
- [ ] Swagger UI at `http://localhost:8080/swagger-ui.html` shows all endpoints.
|
||||
- [ ] Manual test with a REST client (curl / Postman / Swagger UI) succeeds for basic CRUD.
|
||||
|
||||
---
|
||||
|
||||
## Step 6 — Email Sending (Spring Mail + Thymeleaf)
|
||||
|
||||
**Goal:** Send real HTML emails using a Thymeleaf template.
|
||||
|
||||
**What to create:**
|
||||
- `src/main/resources/templates/newsletter-email.html` — the HTML email template
|
||||
- `EmailService` (already defined in Step 4) — connect it to the template engine
|
||||
|
||||
**Template variables:**
|
||||
- `${subscriber.name}` — recipient's name
|
||||
- `${issue.title}` — newsletter title
|
||||
- `${issue.htmlBody}` — main newsletter content
|
||||
- `${unsubscribeUrl}` — one-click unsubscribe link
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, create the Thymeleaf HTML email template and complete the `EmailService` to render it and send via `JavaMailSender`. Include an unsubscribe link in the template."
|
||||
|
||||
**Done when:**
|
||||
- [ ] Template file exists at `src/main/resources/templates/newsletter-email.html`.
|
||||
- [ ] `EmailService.sendNewsletterEmail()` renders the template and sends via SMTP.
|
||||
- [ ] Tested with a real SMTP server (e.g., Mailtrap or Gmail SMTP in dev).
|
||||
|
||||
---
|
||||
|
||||
## Step 7 — Scheduler (Automated Campaigns)
|
||||
|
||||
**Goal:** Automatically trigger campaigns at their `scheduled_at` time.
|
||||
|
||||
**What to create:**
|
||||
- `NewsletterScheduler` class in `scheduler/` package
|
||||
- Uses `@Scheduled(fixedDelay = 60000)` — checks every 60 seconds
|
||||
- Finds all `SCHEDULED` campaigns where `scheduled_at <= now()`
|
||||
- Calls `CampaignService.triggerCampaign()` for each
|
||||
- Updates `SendLog` entries for every subscriber
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, create the `NewsletterScheduler` class. It should run every 60 seconds, find campaigns due to be sent, and dispatch emails to all active subscribers. Update `SendLog` with SENT or FAILED status for each attempt."
|
||||
|
||||
**Done when:**
|
||||
- [ ] `NewsletterScheduler.kt` exists in `scheduler/` package.
|
||||
- [ ] Scheduler correctly processes due campaigns.
|
||||
- [ ] `SendLog` records are created for each send attempt.
|
||||
- [ ] `@EnableScheduling` is added to the main application class or a config class.
|
||||
|
||||
---
|
||||
|
||||
## Step 8 — Security (API Key Authentication)
|
||||
|
||||
**Goal:** Protect the API with a simple API key header check.
|
||||
|
||||
**Approach:**
|
||||
- Use Spring Security with a custom `OncePerRequestFilter`
|
||||
- Clients must pass `X-API-KEY: <key>` header
|
||||
- The key is stored in an environment variable `API_KEY`
|
||||
- Public endpoints (unsubscribe link) are excluded from auth
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, add API key authentication using Spring Security. Create a custom filter that checks the `X-API-KEY` header. The key must come from the `API_KEY` environment variable. Exclude `GET /api/v1/subscribers/unsubscribe/**` from auth."
|
||||
|
||||
**Done when:**
|
||||
- [ ] All API endpoints return `401 Unauthorized` without a valid API key.
|
||||
- [ ] Unsubscribe endpoint works without auth.
|
||||
- [ ] API key is read from environment variable, never hardcoded.
|
||||
|
||||
---
|
||||
|
||||
## Step 9 — Unit & Integration Tests
|
||||
|
||||
**Goal:** Test every service class and at least one integration test per controller.
|
||||
|
||||
**Tests to create:**
|
||||
|
||||
| Test class | Type | Covers |
|
||||
|-----------------------------------|-------------|---------------------------------|
|
||||
| `SubscriberServiceTest` | Unit | subscribe, unsubscribe, list |
|
||||
| `NewsletterIssueServiceTest` | Unit | create, update, archive |
|
||||
| `CampaignServiceTest` | Unit | schedule, cancel, trigger |
|
||||
| `EmailServiceTest` | Unit | template rendering, send logic |
|
||||
| `SubscriberControllerTest` | Integration | POST /api/v1/subscribers |
|
||||
| `NewsletterIssueControllerTest` | Integration | CRUD /api/v1/newsletter-issues |
|
||||
| `CampaignControllerTest` | Integration | POST, trigger, cancel |
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, generate unit tests for all service classes using MockK, and integration tests for all controllers using `@SpringBootTest` with H2 in-memory database. Follow the naming convention `should_[expectedBehavior]_when_[condition]`."
|
||||
|
||||
**Done when:**
|
||||
- [ ] `./gradlew test` passes with all tests green.
|
||||
- [ ] Code coverage for service classes is ≥ 80%.
|
||||
|
||||
---
|
||||
|
||||
## Step 10 — Docker & Deployment Config
|
||||
|
||||
**Goal:** Containerize the application and provide a `docker-compose.yml` for local development.
|
||||
|
||||
**What to create:**
|
||||
|
||||
```
|
||||
condado-news-letter/
|
||||
├── Dockerfile
|
||||
├── docker-compose.yml # App + PostgreSQL + Mailhog (dev SMTP)
|
||||
└── docker-compose.prod.yml # App + PostgreSQL only
|
||||
```
|
||||
|
||||
**Prompt to use with AI:**
|
||||
> "Using the CLAUDE.md context, create a multi-stage `Dockerfile` for the Spring Boot app, a `docker-compose.yml` for local development (includes PostgreSQL and Mailhog for email testing), and a `docker-compose.prod.yml` for production (PostgreSQL only, env vars from host)."
|
||||
|
||||
**Done when:**
|
||||
- [ ] `docker-compose up` starts the full stack.
|
||||
- [ ] App connects to the PostgreSQL container.
|
||||
- [ ] Emails sent in dev are captured by Mailhog at `http://localhost:8025`.
|
||||
- [ ] `./gradlew build && docker build -t condado-newsletter .` succeeds.
|
||||
|
||||
---
|
||||
|
||||
## Notes & Decisions Log
|
||||
|
||||
> Use this section to record important decisions made during the build. Add entries as you go.
|
||||
|
||||
| Date | Decision | Reason |
|
||||
|------------|-------------------------------------------------|-----------------------------------------|
|
||||
| 2026-03-26 | Chose Kotlin + Spring Boot 3.x | Modern, type-safe, great Spring support |
|
||||
| 2026-03-26 | MockK over Mockito | More idiomatic for Kotlin |
|
||||
| 2026-03-26 | UUID as primary keys | Better for distributed systems |
|
||||
| 2026-03-26 | Thymeleaf for email templates | Native Spring Boot support |
|
||||
| 2026-03-26 | API key auth (not JWT) for simplicity in step 1 | Can be upgraded to OAuth2 later |
|
||||
| 2026-03-26 | React + Vite + shadcn/ui for frontend | Modern, fast DX; Tailwind + Radix keeps UI consistent |
|
||||
| 2026-03-26 | All-in-one Docker image (Supervisor + Nginx + PG + JVM)| Simplest possible single-command deployment for friends |
|
||||
| 2026-03-26 | GitHub Actions CI/CD → Docker Hub publish on `main` | Automated image publishing; pinnable via git SHA tags |
|
||||
|
||||
Reference in New Issue
Block a user