├── .bowerrc ├── .codeclimate.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── gulp.conf.json ├── gulpfile.js ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── app.config.js │ ├── app.module.js │ ├── components │ │ └── .gitkeep │ ├── core │ │ ├── core.config.js │ │ ├── core.module.js │ │ └── core.route.js │ ├── modules │ │ └── home │ │ │ ├── home.controller.js │ │ │ ├── home.html │ │ │ ├── home.module.js │ │ │ ├── home.route.js │ │ │ └── home.spec.js │ └── services │ │ └── .gitkeep ├── assets │ ├── images │ │ └── .gitkeep │ └── stylesheets │ │ └── app.css ├── index.tpl └── layout │ └── .gitkeep └── tests └── e2e └── home.scenario.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/assets/vendor" 3 | } 4 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | languages: 2 | JavaScript: true 3 | exclude_paths: 4 | - "gulpfile.js" 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/bower.json -------------------------------------------------------------------------------- /gulp.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/gulp.conf.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/gulpfile.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/src/app/app.config.js -------------------------------------------------------------------------------- /src/app/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/src/app/app.module.js -------------------------------------------------------------------------------- /src/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/core/core.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/src/app/core/core.config.js -------------------------------------------------------------------------------- /src/app/core/core.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/src/app/core/core.module.js -------------------------------------------------------------------------------- /src/app/core/core.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/src/app/core/core.route.js -------------------------------------------------------------------------------- /src/app/modules/home/home.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/src/app/modules/home/home.controller.js -------------------------------------------------------------------------------- /src/app/modules/home/home.html: -------------------------------------------------------------------------------- 1 |

{{ vm.heading }}

2 | -------------------------------------------------------------------------------- /src/app/modules/home/home.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/src/app/modules/home/home.module.js -------------------------------------------------------------------------------- /src/app/modules/home/home.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/src/app/modules/home/home.route.js -------------------------------------------------------------------------------- /src/app/modules/home/home.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/src/app/modules/home/home.spec.js -------------------------------------------------------------------------------- /src/app/services/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/stylesheets/app.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | font-family: Arial, sans-serif; 4 | } 5 | -------------------------------------------------------------------------------- /src/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/src/index.tpl -------------------------------------------------------------------------------- /src/layout/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e/home.scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merty/angular-boilerplate/HEAD/tests/e2e/home.scenario.js --------------------------------------------------------------------------------