Compare commits
13
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5ea3e6d611 | ||
|
|
131a709186 | ||
|
|
a8574be2fb | ||
|
|
dd01a8ec69 | ||
|
|
765f670ef0 | ||
|
|
d2d2034515 | ||
|
|
cadb2c78cf | ||
|
|
81ddb9cba7 | ||
|
|
1fa94b5227 | ||
|
|
633e760599 | ||
|
|
3710c313e9 | ||
|
|
dbfaa0fcb2 | ||
|
|
ed076cf5ab |
+2
-3
@@ -15,7 +15,6 @@
|
||||
- `src/middleware.ts`: Route-level auth and admin role verification guard.
|
||||
|
||||
- **Completed So Far:**
|
||||
- Rewrote entire Git commit history with active local Git identity across all branches and tags, and force-pushed to self-hosted Gitea remote origin.
|
||||
- Conducted full audit of codebase against all specification items in `AGENTS.md`.
|
||||
- Verified 100% implementation of core features: n-depth recursive checklist, real-time subtask synchronization, modular blocks & split resizer, 3-way theme (VSCode dark / pastel light / system), global `UserPrefs` customization, Labs Kanban view, and mobile bottom sheet.
|
||||
- Enhanced CalDAV / DAVx⁵ synchronization endpoint (`src/app/api/dav/[...path]/route.ts`) with full RFC 4791 support: `OPTIONS`, `PROPFIND` (principal & calendar collection discovery), `REPORT` (calendar-query/multiget), `PUT` (task upsert from VTODO), and `DELETE`.
|
||||
@@ -23,8 +22,8 @@
|
||||
- Implemented full-fidelity standard Task Export pair (`/api/export`) supporting RFC 4180 / TickTick-compatible CSV with UTF-8 BOM, and RFC 5545 iCalendar (`.ics` VTODO) format.
|
||||
- Added Export modal in Sidebar user popover menu supporting format selection, target list filtering, completed tasks inclusion toggle, and seamless Demo mode client-side Blob generation.
|
||||
- Added localized i18n strings for Export across English, Korean, and Japanese.
|
||||
- Migrated repository and commit history to self-hosted Gitea remote origin.
|
||||
- Configured production multi-stage `Dockerfile` and automated Gitea Actions CI workflow (`.gitea/workflows/docker-build.yaml`) for building & pushing container images to Gitea Container Registry.
|
||||
- Migrated repository and full 12-commit history to self-hosted Gitea (`https://git.nrh.kr/Neru_Han/checkflow.git`).
|
||||
- Configured production multi-stage `Dockerfile` and automated Gitea Actions CI workflow (`.gitea/workflows/docker-build.yaml`) for building & pushing container images to Gitea Container Registry (`git.nrh.kr`).
|
||||
- Validated that `npm run lint` and `npm run build` execute with 0 errors and 0 warnings.
|
||||
|
||||
- **Next Steps (Todo):**
|
||||
|
||||
@@ -19,7 +19,7 @@ jobs:
|
||||
- name: Log in to Gitea Container Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ${{ secrets.DOCKER_REGISTRY || 'gitea.example.com' }}
|
||||
registry: git.nrh.kr
|
||||
username: ${{ gitea.actor }}
|
||||
password: ${{ secrets.CI_TOKEN }}
|
||||
|
||||
@@ -28,4 +28,4 @@ jobs:
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: ${{ secrets.DOCKER_REGISTRY || 'gitea.example.com' }}/${{ gitea.repository }}:latest
|
||||
tags: git.nrh.kr/${{ gitea.repository }}:latest
|
||||
|
||||
@@ -17,6 +17,3 @@ out/
|
||||
*.pem
|
||||
npm-debug.log*
|
||||
chamgojaryo/
|
||||
|
||||
# local memory & ai context
|
||||
.clinecontext
|
||||
|
||||
Reference in New Issue
Block a user