-
Notifications
You must be signed in to change notification settings - Fork 11
Follow generator directory structure for restify app #38
Copy link
Copy link
Open
Description
Generator follows a common directory structure throughout all app types. This needs to be followed in Restify App as well.
Current structure
├── controllers
│ └── userController.js
├── models
│ └── userSchema.js
├── route.js
├── app.js
├── config.json
├── db.js
├── node_modules
├── package.json
├── gulpfile.js
├── .gitattributes
└── .gitignore
Proposed structure
├── app
│ ├── controllers
│ │ └── userController.js
│ ├── models
│ │ └── userSchema.js
│ └── route.js
│ └── app.js
│ └── config.json
│ └── db.js
├── node_modules
├── package.json
├── gulpfile.js
├── .gitattributes
└── .gitignore
Reactions are currently unavailable