/rigz-sequelize-sample

Proof-Of-Concept Prototype for Rigz -- Firebase/Express/Sequelize

Primary LanguageJavaScript

Sample App Prototype: Node.js

  • Runs with Firebase cloud functions (index.js)
  • MVC pattern:
    • Models: src/database/models
    • Controllers: src/controllers
    • Services: src/services
  • Models with Sequelize
    • Demostrates basic associations:
      • (1:1 association): see Products and Specs.
      • (1:N association): see Catalogs and Products.
      • (M:N association): see Products and Promos.
    • Each controllers includes basic CRUD operations within the models.