├── .editorconfig ├── .gitattributes ├── .gitignore ├── .htaccess ├── .jshintrc ├── README.md ├── app ├── images │ ├── .keep │ └── image.jpg ├── scripts │ ├── about.controller.js │ ├── app.controller.js │ ├── entry.js │ └── vendor.js ├── styles │ └── app.scss └── views │ ├── about.jade │ ├── index.jade │ └── main.jade ├── config-example.json ├── gulpfile.js ├── package.json └── test ├── e2e ├── main.po.js └── main.spec.js └── protractor.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .tmp 4 | .sass-cache 5 | config.json 6 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/.htaccess -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/.jshintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /app/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/app/images/image.jpg -------------------------------------------------------------------------------- /app/scripts/about.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/app/scripts/about.controller.js -------------------------------------------------------------------------------- /app/scripts/app.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/app/scripts/app.controller.js -------------------------------------------------------------------------------- /app/scripts/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/app/scripts/entry.js -------------------------------------------------------------------------------- /app/scripts/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/app/scripts/vendor.js -------------------------------------------------------------------------------- /app/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/app/styles/app.scss -------------------------------------------------------------------------------- /app/views/about.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/app/views/about.jade -------------------------------------------------------------------------------- /app/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/app/views/index.jade -------------------------------------------------------------------------------- /app/views/main.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/app/views/main.jade -------------------------------------------------------------------------------- /config-example.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /test/e2e/main.po.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/test/e2e/main.po.js -------------------------------------------------------------------------------- /test/e2e/main.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/test/e2e/main.spec.js -------------------------------------------------------------------------------- /test/protractor.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhpoet/frontend-boilerplate/HEAD/test/protractor.config.js --------------------------------------------------------------------------------