NEW

Summary

Directory Structure

Directory structure:
└── ganeshmani-node-sequelize-tutorial/
    ├── README.md
    ├── index.js
    ├── package.json
    ├── .sequelizerc
    └── server/
        ├── config/
        │   └── config.json
        ├── controller/
        │   ├── index.js
        │   ├── post.js
        │   └── user.js
        ├── migrations/
        │   ├── acreate-user.js
        │   └── create-post.js
        ├── models/
        │   ├── index.js
        │   ├── post.js
        │   └── user.js
        └── routes/
            └── index.js

Files Content