├── .gitignore ├── .npmignore ├── .travis.yml ├── Gruntfile.js ├── README.md ├── app ├── css │ ├── main.less │ └── style.less ├── img │ ├── .gitkeep │ ├── demo1.jpg │ └── demo2.jpg ├── js │ ├── .gitkeep │ ├── app.js │ ├── controllers │ │ ├── books_controller.js │ │ ├── home_controller.js │ │ └── login_controller.js │ ├── directives │ │ └── shows_message_when_hovered.js │ ├── resources │ │ └── book_resource.js │ ├── router.js │ └── services │ │ ├── authentication_service.js │ │ └── book_service.js ├── pages │ └── index.us ├── static │ └── favicon.ico └── templates │ ├── books_http.html │ ├── books_resource.html │ ├── home.html │ └── login.html ├── config ├── application.js ├── files.js ├── lineman.js ├── server.js ├── spec-e2e.js └── spec.json ├── package.json ├── spec-e2e ├── books_spec.js └── login_spec.coffee ├── spec ├── controllers │ ├── login_controller_jasmine_given_spec.coffee │ ├── login_controller_spec.coffee │ └── login_controller_spec.js ├── directives │ ├── shows_message_when_hovered_jasmine_given_spec.coffee │ └── shows_message_when_hovered_spec.js ├── helpers │ ├── angular-mocks.js │ ├── helper.js │ ├── jasmine-fixture.js │ ├── jasmine-given.js │ ├── jasmine-only.js │ └── jasmine-stealth.js └── services │ └── authentication_service_spec.coffee ├── tasks ├── .gitkeep └── spec-e2e.coffee └── vendor ├── css ├── .gitkeep ├── foundation.min.css └── normalize.css ├── img └── .gitkeep └── js ├── angular-resource.js ├── angular-route.js ├── angular.js └── underscore.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/README.md -------------------------------------------------------------------------------- /app/css/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/css/main.less -------------------------------------------------------------------------------- /app/css/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/css/style.less -------------------------------------------------------------------------------- /app/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/img/demo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/img/demo1.jpg -------------------------------------------------------------------------------- /app/img/demo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/img/demo2.jpg -------------------------------------------------------------------------------- /app/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/js/app.js -------------------------------------------------------------------------------- /app/js/controllers/books_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/js/controllers/books_controller.js -------------------------------------------------------------------------------- /app/js/controllers/home_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/js/controllers/home_controller.js -------------------------------------------------------------------------------- /app/js/controllers/login_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/js/controllers/login_controller.js -------------------------------------------------------------------------------- /app/js/directives/shows_message_when_hovered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/js/directives/shows_message_when_hovered.js -------------------------------------------------------------------------------- /app/js/resources/book_resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/js/resources/book_resource.js -------------------------------------------------------------------------------- /app/js/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/js/router.js -------------------------------------------------------------------------------- /app/js/services/authentication_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/js/services/authentication_service.js -------------------------------------------------------------------------------- /app/js/services/book_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/js/services/book_service.js -------------------------------------------------------------------------------- /app/pages/index.us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/pages/index.us -------------------------------------------------------------------------------- /app/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/static/favicon.ico -------------------------------------------------------------------------------- /app/templates/books_http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/templates/books_http.html -------------------------------------------------------------------------------- /app/templates/books_resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/templates/books_resource.html -------------------------------------------------------------------------------- /app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/templates/home.html -------------------------------------------------------------------------------- /app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/app/templates/login.html -------------------------------------------------------------------------------- /config/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/config/application.js -------------------------------------------------------------------------------- /config/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/config/files.js -------------------------------------------------------------------------------- /config/lineman.js: -------------------------------------------------------------------------------- 1 | module.exports = require(process.env['LINEMAN_MAIN']); 2 | -------------------------------------------------------------------------------- /config/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/config/server.js -------------------------------------------------------------------------------- /config/spec-e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/config/spec-e2e.js -------------------------------------------------------------------------------- /config/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/config/spec.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/package.json -------------------------------------------------------------------------------- /spec-e2e/books_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec-e2e/books_spec.js -------------------------------------------------------------------------------- /spec-e2e/login_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec-e2e/login_spec.coffee -------------------------------------------------------------------------------- /spec/controllers/login_controller_jasmine_given_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec/controllers/login_controller_jasmine_given_spec.coffee -------------------------------------------------------------------------------- /spec/controllers/login_controller_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec/controllers/login_controller_spec.coffee -------------------------------------------------------------------------------- /spec/controllers/login_controller_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec/controllers/login_controller_spec.js -------------------------------------------------------------------------------- /spec/directives/shows_message_when_hovered_jasmine_given_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec/directives/shows_message_when_hovered_jasmine_given_spec.coffee -------------------------------------------------------------------------------- /spec/directives/shows_message_when_hovered_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec/directives/shows_message_when_hovered_spec.js -------------------------------------------------------------------------------- /spec/helpers/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec/helpers/angular-mocks.js -------------------------------------------------------------------------------- /spec/helpers/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec/helpers/helper.js -------------------------------------------------------------------------------- /spec/helpers/jasmine-fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec/helpers/jasmine-fixture.js -------------------------------------------------------------------------------- /spec/helpers/jasmine-given.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec/helpers/jasmine-given.js -------------------------------------------------------------------------------- /spec/helpers/jasmine-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec/helpers/jasmine-only.js -------------------------------------------------------------------------------- /spec/helpers/jasmine-stealth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec/helpers/jasmine-stealth.js -------------------------------------------------------------------------------- /spec/services/authentication_service_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/spec/services/authentication_service_spec.coffee -------------------------------------------------------------------------------- /tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/spec-e2e.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/tasks/spec-e2e.coffee -------------------------------------------------------------------------------- /vendor/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/css/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/vendor/css/foundation.min.css -------------------------------------------------------------------------------- /vendor/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/vendor/css/normalize.css -------------------------------------------------------------------------------- /vendor/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/js/angular-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/vendor/js/angular-resource.js -------------------------------------------------------------------------------- /vendor/js/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/vendor/js/angular-route.js -------------------------------------------------------------------------------- /vendor/js/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/vendor/js/angular.js -------------------------------------------------------------------------------- /vendor/js/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linemanjs/lineman-angular-template/HEAD/vendor/js/underscore.js --------------------------------------------------------------------------------