Skip to content

docs: Update README project structure to reflect current architecture #370

@claude

Description

@claude

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

  1. profile.tsxprofile/ directory
  2. steps/program/ with sub-routes (steps, daily, prayers, literature, meetings)
  3. Added manage-tasks.tsx (hidden from nav)

Related


🤖 Generated by Daily Codebase Review

Metadata

Metadata

Assignees

No one assigned

    Labels

    documentationImprovements or additions to documentation

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions