Skip to content

Instantly share code, notes, and snippets.

@yongkangc
Last active October 11, 2024 02:51
Show Gist options
  • Save yongkangc/f1cafc04523cc8a483aa3c77feeab8b6 to your computer and use it in GitHub Desktop.
Save yongkangc/f1cafc04523cc8a483aa3c77feeab8b6 to your computer and use it in GitHub Desktop.
technical architecture
graph TD
    A[Event Name] -->|Schedule Command| B[Event Schema]
    A --> C[Ideas Schema]
    
    D[Mini App URL] --> E[Ideas Leaderboard]
    D --> F[Call for Ideas]
    
    F --> G[Idea Form]
    G --> H[Ideas Table]
    
    E -->|Displays| H
    
    I[Idea Confirmation] --> J[Confirm Command]
    J --> K[Event Validation]
    K --> L[Confirm Form]
    
    L --> M[Send to Group]
    M --> N[RSVP Buttons]
    
    O[Display Ideas]
    P[Finalize Idea]
    
    H --> O
    O --> P
    P --> L

    B --> Q[Event Details]
    C --> R[Idea Details]
    Q --> L
    R --> E
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment