We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Give me two days time i will finish.....
Sorry, something went wrong.
No probs thiyagu! Just want to remind you on that 👍
i have completed my changes . One thing i want to discuss. We can't keep route.js,app.js,config.js,db.js inside app folder.
No branches or pull requests
Generator follows a common directory structure throughout all app types. This needs to be followed in Restify App as well.
Current structure
Proposed structure
The text was updated successfully, but these errors were encountered: