├── .editorconfig ├── .gitattributes ├── .gitignore ├── .idea ├── .name ├── encodings.xml ├── generator-angular-fullstack-crud.iml ├── jsLibraryMappings.xml ├── libraries │ └── generator_angular_fullstack_crud_node_modules.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── vcs.xml └── workspace.xml ├── .jshintrc ├── .travis.yml ├── README.md ├── app ├── config.json ├── index.js └── templates │ ├── _angular.controller.edit.rm │ ├── _angular.controller.list.rm │ ├── _angular.view.edit.html │ ├── _angular.view.list.html │ ├── _app.prototypes.rm │ ├── _app.prototypes.rm.fromcodeblocks │ ├── _app.rm │ ├── _app.rm.fromcodeblocks │ ├── _index.rm │ ├── _index.rm.fromcodeblocks │ ├── _navbar.rm │ ├── _navbar.rm.fromcodeblocks │ ├── _routes.includes.rm │ ├── _routes.includes.rm.fromcodeblocks │ ├── _server.api.controller.rm │ ├── _server.api.index.rm │ ├── _server.api.model.rm │ ├── _server.api.socket.rm │ ├── _server.api.spec.rm │ └── _view.html ├── package.json └── test ├── test-creation.js └── test-load.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | temp/ 3 | .idea/ -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | generator-angular-fullstack-crud -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/generator-angular-fullstack-crud.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/.idea/generator-angular-fullstack-crud.iml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/libraries/generator_angular_fullstack_crud_node_modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/.idea/libraries/generator_angular_fullstack_crud_node_modules.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/README.md -------------------------------------------------------------------------------- /app/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/config.json -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/_angular.controller.edit.rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_angular.controller.edit.rm -------------------------------------------------------------------------------- /app/templates/_angular.controller.list.rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_angular.controller.list.rm -------------------------------------------------------------------------------- /app/templates/_angular.view.edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_angular.view.edit.html -------------------------------------------------------------------------------- /app/templates/_angular.view.list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_angular.view.list.html -------------------------------------------------------------------------------- /app/templates/_app.prototypes.rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_app.prototypes.rm -------------------------------------------------------------------------------- /app/templates/_app.prototypes.rm.fromcodeblocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_app.prototypes.rm.fromcodeblocks -------------------------------------------------------------------------------- /app/templates/_app.rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_app.rm -------------------------------------------------------------------------------- /app/templates/_app.rm.fromcodeblocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_app.rm.fromcodeblocks -------------------------------------------------------------------------------- /app/templates/_index.rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_index.rm -------------------------------------------------------------------------------- /app/templates/_index.rm.fromcodeblocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_index.rm.fromcodeblocks -------------------------------------------------------------------------------- /app/templates/_navbar.rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_navbar.rm -------------------------------------------------------------------------------- /app/templates/_navbar.rm.fromcodeblocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_navbar.rm.fromcodeblocks -------------------------------------------------------------------------------- /app/templates/_routes.includes.rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_routes.includes.rm -------------------------------------------------------------------------------- /app/templates/_routes.includes.rm.fromcodeblocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_routes.includes.rm.fromcodeblocks -------------------------------------------------------------------------------- /app/templates/_server.api.controller.rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_server.api.controller.rm -------------------------------------------------------------------------------- /app/templates/_server.api.index.rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_server.api.index.rm -------------------------------------------------------------------------------- /app/templates/_server.api.model.rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_server.api.model.rm -------------------------------------------------------------------------------- /app/templates/_server.api.socket.rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_server.api.socket.rm -------------------------------------------------------------------------------- /app/templates/_server.api.spec.rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_server.api.spec.rm -------------------------------------------------------------------------------- /app/templates/_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/app/templates/_view.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/package.json -------------------------------------------------------------------------------- /test/test-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/test/test-creation.js -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartyIce/generator-angular-fullstack-crud/HEAD/test/test-load.js --------------------------------------------------------------------------------