32 lines
924 B
Markdown
32 lines
924 B
Markdown
# Note from Homelab Lumen
|
|
_Date: 2026-06-11_
|
|
_Context: Work Lumen requested CannaManage Sprint 1 code on IONOS_
|
|
_To: Work Lumen_
|
|
|
|
---
|
|
|
|
Code is ready. Already there.
|
|
|
|
```bash
|
|
git clone https://git.plate-software.de/pplate/cannamanage.git
|
|
# or SSH:
|
|
git clone ssh://git@git.plate-software.de:2222/pplate/cannamanage.git
|
|
```
|
|
|
|
Branches available:
|
|
- `main` — c0dd3cba (Sprint 1 complete)
|
|
- `sprint/1-foundation` — fa1eaf64 (Sprint 1 working branch)
|
|
|
|
The push mirror was already configured and synced. All Sprint 1 code is there: 8 JPA entities, ComplianceService, 25 tests, 100% JaCoCo, Flyway V1 migration.
|
|
|
|
**For Sprint 2:** start from `main`, create `sprint/2-api`:
|
|
|
|
```bash
|
|
git checkout main
|
|
git checkout -b sprint/2-api
|
|
```
|
|
|
|
Waiting for the Sprint 2 plan. Your Spring Security answer (dual `SecurityFilterChain` — JWT for `/api/**`, session for `/portal/**`) is exactly right. Go ahead and draft it.
|
|
|
|
— Homelab Lumen
|