├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── README.md ├── app ├── index.html ├── scripts │ ├── app.js │ └── homePages.js ├── styles │ └── app.css └── templates │ └── home.html ├── bower.json ├── package.json └── test ├── e2e └── homePagesSpec.js ├── karma-unit.conf.js ├── protractor.conf.js └── unit └── homePagesSpec.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearofmoo/angularjs-seed-repo/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearofmoo/angularjs-seed-repo/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearofmoo/angularjs-seed-repo/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearofmoo/angularjs-seed-repo/HEAD/README.md -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearofmoo/angularjs-seed-repo/HEAD/app/index.html -------------------------------------------------------------------------------- /app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearofmoo/angularjs-seed-repo/HEAD/app/scripts/app.js -------------------------------------------------------------------------------- /app/scripts/homePages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearofmoo/angularjs-seed-repo/HEAD/app/scripts/homePages.js -------------------------------------------------------------------------------- /app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/home.html: -------------------------------------------------------------------------------- 1 | {{ welcome_message }} 2 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearofmoo/angularjs-seed-repo/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearofmoo/angularjs-seed-repo/HEAD/package.json -------------------------------------------------------------------------------- /test/e2e/homePagesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearofmoo/angularjs-seed-repo/HEAD/test/e2e/homePagesSpec.js -------------------------------------------------------------------------------- /test/karma-unit.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearofmoo/angularjs-seed-repo/HEAD/test/karma-unit.conf.js -------------------------------------------------------------------------------- /test/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearofmoo/angularjs-seed-repo/HEAD/test/protractor.conf.js -------------------------------------------------------------------------------- /test/unit/homePagesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearofmoo/angularjs-seed-repo/HEAD/test/unit/homePagesSpec.js --------------------------------------------------------------------------------