vault backup: 2026-04-20 17:01:45

This commit is contained in:
Vadym Samoilenko 2026-04-20 17:01:45 +01:00
parent 20244436b9
commit f286e2da0f
3 changed files with 24 additions and 1 deletions

View file

@ -4,7 +4,7 @@
"syncFolder": "Hoarder",
"attachmentsFolder": "Hoarder/attachments",
"syncIntervalMinutes": 60,
"lastSyncTimestamp": 1776633399160,
"lastSyncTimestamp": 1776700705756,
"updateExistingFiles": false,
"excludeArchived": true,
"onlyFavorites": false,

View file

@ -23,6 +23,14 @@ created: 2026-04-17
- **Local path:** `/Volumes/SSD/Projects/Oliver/Barclays-banner-builder`
## Sessions
### 2026-04-20 Add a visual progress indicator showing
**Asked:** Add a visual progress indicator showing user journey through workflow stages (Brief → Edit Variants → Banner Editor → Export).
**Done:** Implemented Zustand journey store, JourneyStepper component with state management, and integrated stepper into Layout across all four workflow pages.
### 2026-04-20 Add a visual progress indicator showing
**Asked:** Add a visual progress indicator showing user journey through four workflow stages with navigation restrictions.
**Done:** Wired ExportPage and implemented progress indicator component with stage-based UI states and backward-only navigation.
### 2026-04-17 Create an idempotent deployment script for
**Asked:** Create an idempotent deployment script for Ubuntu that builds Docker containers, pulls code, initializes database, and runs migrations.
**Done:** Analyzed project requirements and provided deployment script foundation with Docker build caching, database initialization, and migration execution strategy.
@ -211,6 +219,8 @@ created: 2026-04-17
## Change Log
| Date | Requested | Changed | Files |
|------|-----------|---------|-------|
| 2026-04-20 | Progress indicator | Zustand store with journey state, JourneyStepper component with Barclays tokens, Layout integration, stage completion tracking | journey.ts, stepper.tsx, Layout.tsx, BriefEditor.tsx, VariantsGrid.tsx, BannerEditor.tsx, ExportPage.tsx |
| 2026-04-20 | Progress indicator | ExportPage integration, stage completion logic, forward step disabling, navigation constraints | ExportPage.tsx, ProgressIndicator.tsx |
| 2026-04-17 | Deployment script | Docker build caching, code pull logic, database init, Alembic migrations | deploy.sh, docker-compose.yml |
| 2026-04-17 | Editor form UI | Replace TOV checkboxes with textarea, remove unused cn import | EditorForm.tsx |
| 2026-04-17 | Deployment script | Docker build with cache, code pull, DB init, Alembic migrations | deploy.sh |

13
99 Daily/2026-04-20.md Normal file
View file

@ -0,0 +1,13 @@
---
date: 2026-04-20
tags: [daily]
---
## Session Log
- 17:00 (6min) | `Barclays-banner-builder`
- **Asked:** Add a visual progress indicator showing user journey through four workflow stages with navigation restrictions.
- **Done:** Wired ExportPage and implemented progress indicator component with stage-based UI states and backward-only navigation.
- 17:00 | `Barclays-banner-builder`
- **Asked:** Add a visual progress indicator showing user journey through workflow stages (Brief → Edit Variants → Banner Editor → Export).
- **Done:** Implemented Zustand journey store, JourneyStepper component with state management, and integrated stepper into Layout across all four workflow pages.