1.3 KiB
1.3 KiB
Roadmap
v0
| Feature | Status | Notes |
|---|---|---|
| CLI config management | ⬜ plan | |
| JWT authentication | ⬜ plan | access + refresh tokens, refresh token in DB |
| File upload/download/manage APIs | ⬜ plan | REST API via Gin |
| Admin endpoints | ⬜ plan | user CRUD for superusers |
| WebDAV | ⬜ plan | future v0 or v1 |
Implementation Tasks
Package-level implementation order (each task includes unit tests):
internal/config— Viper loader, config structinternal/model— domain types, error codesinternal/api— JSON response helpersinternal/auth— JWT utilsinternal/storage— backend interface + local fsinternal/repository— interfaces + GORM/SQLite implinternal/service— auth, file, admin servicesinternal/middleware— requestid, logger, cors, authinternal/handler— auth, file, admin handlersinternal/server— Gin wiring, route registrationcmd/serve.go,cmd/config.go,cmd/status.go- Integration tests
Future
| Feature | Status | Notes |
|---|---|---|
| Image server | ⬜ plan | thumbnail generation |
| Pastebin & code snippets | ⬜ plan | in sharing context |
| S3 storage backend | ⬜ plan | new storage impl |
| Nextcloud-compatible API | ⬜ plan | new handler layer on existing services |