Files
tabungin/docs/README.md
dwindown 35e93b826a chore: cleanup root folder markdown files
- Deleted 36 old session/progress files (Oct 8-13)
- Deleted deprecated FIREBASE_SETUP.md
- Moved 4 planning documents to docs/planning/
  - PROJECT_PLAN.md → project-plan.md
  - PROJECT_STANDARDS.md → project-standards.md
  - TODO_ADMIN_FEATURES.md → todo-admin-features.md
  - IMPLEMENTATION_PLAN.md → implementation-plan.md
- Updated docs/README.md with new planning documents
- Root folder now only contains README.md
2025-10-13 09:37:03 +07:00

2.7 KiB

Tabungin Documentation

Welcome to the Tabungin documentation! This guide will help you understand the project structure, features, and development workflow.

📚 Documentation Structure

Features

Detailed documentation for each feature implementation:

Guides

Step-by-step guides for common tasks:

Planning

Project planning and roadmap:

🚀 Quick Start

  1. Clone the repository

    git clone <repository-url>
    cd Tabungin
    
  2. Install dependencies

    npm install
    
  3. Setup environment

    cp .env.example .env
    # Edit .env with your configuration
    
  4. Run development servers

    # Terminal 1: API
    cd apps/api
    npm run dev
    
    # Terminal 2: Web
    cd apps/web
    npm run dev
    

🏗️ Project Structure

Tabungin/
├── apps/
│   ├── api/          # NestJS backend
│   └── web/          # React frontend
├── docs/             # Documentation
│   ├── features/     # Feature documentation
│   ├── guides/       # How-to guides
│   └── planning/     # Project planning
└── README.md         # Project overview

📝 Contributing

When adding new features:

  1. Create feature documentation in docs/features/
  2. Update testing guide if needed
  3. Add to to-do list or mark as complete
  4. Update this index

🆘 Need Help?