├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── index.js └── templates │ ├── _Gruntfile.js │ ├── _Procfile │ ├── _app.js │ ├── _app_grunt.js │ ├── _bower.json │ ├── _bowerrc │ ├── _editorconfig │ ├── _env │ ├── _gitattributes │ ├── _gitignore │ ├── _jshintrc │ ├── _karma-e2e.conf.js │ ├── _karma.conf.js │ ├── _package.json │ ├── _server.js │ ├── app │ ├── .buildignore │ ├── .htaccess │ ├── 404.html │ ├── favicon.ico │ ├── index.html │ ├── robots.txt │ ├── scripts │ │ ├── app.js │ │ └── controllers │ │ │ └── main.js │ ├── styles │ │ └── main.css │ └── views │ │ └── main.html │ ├── config │ └── environments │ │ ├── development.js │ │ ├── index.js │ │ └── production.js │ ├── public │ └── stylesheets │ │ └── style.css │ ├── routes │ └── index.js │ ├── test │ ├── runner.html │ └── spec │ │ └── controllers │ │ └── main.js │ └── views │ └── index.ejs ├── package.json └── test ├── test-creation.js └── test-load.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | temp/ 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/_Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/_Gruntfile.js -------------------------------------------------------------------------------- /app/templates/_Procfile: -------------------------------------------------------------------------------- 1 | web: node server.js -------------------------------------------------------------------------------- /app/templates/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/_app.js -------------------------------------------------------------------------------- /app/templates/_app_grunt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/_app_grunt.js -------------------------------------------------------------------------------- /app/templates/_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/_bower.json -------------------------------------------------------------------------------- /app/templates/_bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /app/templates/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/_editorconfig -------------------------------------------------------------------------------- /app/templates/_env: -------------------------------------------------------------------------------- 1 | NODE_ENV=production -------------------------------------------------------------------------------- /app/templates/_gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /app/templates/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/_gitignore -------------------------------------------------------------------------------- /app/templates/_jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/_jshintrc -------------------------------------------------------------------------------- /app/templates/_karma-e2e.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/_karma-e2e.conf.js -------------------------------------------------------------------------------- /app/templates/_karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/_karma.conf.js -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/_server.js -------------------------------------------------------------------------------- /app/templates/app/.buildignore: -------------------------------------------------------------------------------- 1 | *.coffee -------------------------------------------------------------------------------- /app/templates/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/app/.htaccess -------------------------------------------------------------------------------- /app/templates/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/app/404.html -------------------------------------------------------------------------------- /app/templates/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/app/favicon.ico -------------------------------------------------------------------------------- /app/templates/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/app/index.html -------------------------------------------------------------------------------- /app/templates/app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /app/templates/app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/app/scripts/app.js -------------------------------------------------------------------------------- /app/templates/app/scripts/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/app/scripts/controllers/main.js -------------------------------------------------------------------------------- /app/templates/app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/app/styles/main.css -------------------------------------------------------------------------------- /app/templates/app/views/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/app/views/main.html -------------------------------------------------------------------------------- /app/templates/config/environments/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/config/environments/development.js -------------------------------------------------------------------------------- /app/templates/config/environments/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/config/environments/index.js -------------------------------------------------------------------------------- /app/templates/config/environments/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/config/environments/production.js -------------------------------------------------------------------------------- /app/templates/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/public/stylesheets/style.css -------------------------------------------------------------------------------- /app/templates/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/routes/index.js -------------------------------------------------------------------------------- /app/templates/test/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/test/runner.html -------------------------------------------------------------------------------- /app/templates/test/spec/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/test/spec/controllers/main.js -------------------------------------------------------------------------------- /app/templates/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/app/templates/views/index.ejs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/package.json -------------------------------------------------------------------------------- /test/test-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/test/test-creation.js -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlepinski/generator-meanstack/HEAD/test/test-load.js --------------------------------------------------------------------------------