Skip to content

Latest commit

 

History

History
63 lines (47 loc) · 2.67 KB

File metadata and controls

63 lines (47 loc) · 2.67 KB

Specification Links

This document provides curated links to relevant specifications from the localstore-platform/specs repository (v1.1-specs).

Core Specifications

Architecture

  • API Specification

    • REST endpoints (lines 80-1200)
    • GraphQL schema (lines 1200-1800)
    • gRPC service definitions (lines 1800-2000)
  • Backend Setup Guide

    • Development environment (lines 1-200)
    • Docker Compose setup (lines 200-400)
    • Database migrations (lines 400-600)
    • Testing strategy (lines 800-1000)
    • Production deployment (lines 1200-1600)
  • Database Schema

    • Core tables (lines 80-500)
    • RLS policies (lines 500-650)
    • Indexes (lines 650-750)
    • Analytics extension (see database-schema-analytics-extension.md)
  • GraphQL Schema

    • Type definitions (lines 1-400)
    • Queries (lines 400-600)
    • Mutations (lines 600-800)
    • Subscriptions (lines 800-900)

Implementation

Quick Reference

Key Technical Constraints

  • Primary Market: Vietnamese small businesses (restaurants, street food vendors)
  • Language: Vietnamese-first (vi-VN locale, VND currency)
  • Architecture: Multi-tenant SaaS platform
  • Cost Target: ~$20/month MVP deployment
  • Database: PostgreSQL 14 with Row-Level Security (RLS)
  • Caching: Redis 7
  • Queue: Bull Queue for background jobs

Development Workflow

  1. Check specs repository for feature requirements
  2. Review relevant specification sections
  3. Implement following patterns in Backend Setup Guide
  4. Write tests per Testing Strategy guidelines
  5. Submit PR with reference to spec sections implemented

Additional Resources