-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
Description
The README.md project structure section is outdated and doesn't reflect the current codebase organization.
Current README (lines 84-103)
└── (app)/ # Authenticated group
└── (tabs)/ # Tab navigation
├── index.tsx # Dashboard (home)
├── tasks.tsx # Task management
├── journey.tsx # Recovery timeline
├── profile.tsx # User profile ← Incorrect (now profile/)
└── steps/ # 12-step content ← Incorrect (now program/)
Actual Current Structure
└── (app)/
└── (tabs)/
├── index.tsx # Dashboard
├── tasks.tsx # Task management
├── manage-tasks.tsx # Task creation/editing
├── journey.tsx # Recovery timeline
├── profile/ # User profile (now a directory)
│ └── index.tsx
└── program/ # 12-step content (renamed from steps)
├── index.tsx
├── daily.tsx
├── literature.tsx
├── meetings.tsx
├── prayers.tsx
└── steps/
Key Changes to Document
profile.tsx→profile/directorysteps/→program/with sub-routes (steps, daily, prayers, literature, meetings)- Added
manage-tasks.tsx(hidden from nav)
Related
- References summary issue 📋 Daily Codebase Review - 2026-02-08 #369
🤖 Generated by Daily Codebase Review
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation