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:
- Models with Sequelize
- Demostrates basic associations:
(1:1 association)
: seeProducts
andSpecs
.(1:N association)
: seeCatalogs
andProducts
.(M:N association)
: seeProducts
andPromos
.
- Each controllers includes basic CRUD operations within the models.
- Demostrates basic associations: