├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── index.js └── templates │ ├── Gruntfile.js │ ├── README.md.erb │ ├── _app.js │ ├── _bower.json │ ├── _generator.json │ ├── _package.json │ ├── bowerrc │ ├── editorconfig │ ├── gitignore │ ├── jshintrc │ ├── models │ └── _index.js │ └── public │ ├── _index.html │ ├── css │ └── app.css │ ├── js │ ├── _app.js │ └── home │ │ └── _home-controller.js │ └── views │ └── home │ └── _home.html ├── entity ├── index.js └── templates │ ├── _generator.json │ ├── models │ └── _entity.js │ ├── public │ ├── js │ │ └── entity │ │ │ ├── _entity-controller.js │ │ │ ├── _entity-router.js │ │ │ └── _entity-service.js │ └── views │ │ └── entity │ │ └── _entities.html │ └── routes │ └── _entities.js ├── package.json └── test ├── test-creation.js └── test-load.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | temp/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/templates/Gruntfile.js -------------------------------------------------------------------------------- /app/templates/README.md.erb: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | Blah blah 4 | 5 | -------------------------------------------------------------------------------- /app/templates/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/templates/_app.js -------------------------------------------------------------------------------- /app/templates/_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/templates/_bower.json -------------------------------------------------------------------------------- /app/templates/_generator.json: -------------------------------------------------------------------------------- 1 | <%= generatorConfigStr %> 2 | -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/templates/bowerrc -------------------------------------------------------------------------------- /app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/templates/editorconfig -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | *~ 4 | node_modules 5 | -------------------------------------------------------------------------------- /app/templates/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/templates/jshintrc -------------------------------------------------------------------------------- /app/templates/models/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/templates/models/_index.js -------------------------------------------------------------------------------- /app/templates/public/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/templates/public/_index.html -------------------------------------------------------------------------------- /app/templates/public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/templates/public/css/app.css -------------------------------------------------------------------------------- /app/templates/public/js/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/templates/public/js/_app.js -------------------------------------------------------------------------------- /app/templates/public/js/home/_home-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/templates/public/js/home/_home-controller.js -------------------------------------------------------------------------------- /app/templates/public/views/home/_home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/app/templates/public/views/home/_home.html -------------------------------------------------------------------------------- /entity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/entity/index.js -------------------------------------------------------------------------------- /entity/templates/_generator.json: -------------------------------------------------------------------------------- 1 | <%= generatorConfigStr %> 2 | -------------------------------------------------------------------------------- /entity/templates/models/_entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/entity/templates/models/_entity.js -------------------------------------------------------------------------------- /entity/templates/public/js/entity/_entity-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/entity/templates/public/js/entity/_entity-controller.js -------------------------------------------------------------------------------- /entity/templates/public/js/entity/_entity-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/entity/templates/public/js/entity/_entity-router.js -------------------------------------------------------------------------------- /entity/templates/public/js/entity/_entity-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/entity/templates/public/js/entity/_entity-service.js -------------------------------------------------------------------------------- /entity/templates/public/views/entity/_entities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/entity/templates/public/views/entity/_entities.html -------------------------------------------------------------------------------- /entity/templates/routes/_entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/entity/templates/routes/_entities.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/package.json -------------------------------------------------------------------------------- /test/test-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/test/test-creation.js -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-express-sequelize/HEAD/test/test-load.js --------------------------------------------------------------------------------