Skip to content

Documentation Structure & Navigation Guide

Last Updated: 2026-05-27

This guide explains the documentation structure and helps you find what you need quickly.

Quick Navigation

Getting Started

Project Planning

Technical Documentation

Backend

Slack & Integrations

Testing

Workflow & Reports

Documentation Map

docs/
├── index.md                    # Landing page
├── setup/
│   └── guide.md                # Canonical setup (Notion, Slack, backend, env)
├── development/
│   ├── implementation-guide.md # Daily dev commands
│   └── documentation-guide.md
├── architecture/
│   ├── layered.md              # 10-layer architecture reference
│   ├── flows.md                # Architecture flow walkthrough
│   └── slack-bot.md            # Slack bot system design
├── operations/
│   └── notion-sync-deployment.md
├── project/                    # Scope, backlog, git strategy
├── poc/                        # POC step-by-step implementation
├── mvp-presentation/           # MVP feature walkthroughs with demos
├── backend/                    # Backend technical docs
├── workflow/                   # User stories, roadmap, E2E flow
├── tests/                      # Testing documentation
├── integrations/               # Notion hub
├── slack/                      # Slack bot docs
├── report/                     # Internship report (+ build scripts)
├── weekly/                     # Weekly progress logs
└── public/                     # Static assets, logos, demo videos

URL redirects

Legacy bookmark URLs are handled by docs/public/_redirects (deployed with Cloudflare Pages). Examples:

Old URLNew URL
/notion-import-guide/setup/guide
/ArchitectureLayered/architecture/layered
/IMPLEMENTATION_GUIDE/development/implementation-guide
/deployment/operations/notion-sync-deployment