You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the solution you'd like
add a new command for generating a new sequelize model with auto-include CRUD operations in the controller, routes, and swagger docs
Describe alternatives you've considered
my proposed command example: lts ness add model NewModelName.
this will create a new file inside the existing NESS project like below:
src/models/newModelName.model.ts
src/controllers/newModelName.controller.ts
src/routes/newModelName.routes.ts
test/models/newModelName.model.test.ts
test/controllers/newModelName.controller.test.ts
The text was updated successfully, but these errors were encountered:
Describe the solution you'd like
add a new command for generating a new sequelize model with auto-include CRUD operations in the controller, routes, and swagger docs
Describe alternatives you've considered
my proposed command example:
lts ness add model NewModelName
.this will create a new file inside the existing
NESS
project like below:src/models/newModelName.model.ts
src/controllers/newModelName.controller.ts
src/routes/newModelName.routes.ts
test/models/newModelName.model.test.ts
test/controllers/newModelName.controller.test.ts
The text was updated successfully, but these errors were encountered: