├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── slushfile.js └── templates ├── app ├── _bowerrc ├── app │ ├── app.js │ ├── assets │ │ └── icons │ │ │ ├── play-icon.hqx │ │ │ ├── play-icon.icns │ │ │ └── play-icon.ico │ ├── index.html │ ├── public │ │ ├── css │ │ │ └── app.css │ │ ├── js │ │ │ └── app.js │ │ └── partials │ │ │ └── head.html │ ├── routes │ │ └── index.js │ └── views │ │ └── index.ejs ├── bower.json ├── gulpFile.js └── package.json └── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | temp 3 | *.log 4 | .idea 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/package.json -------------------------------------------------------------------------------- /slushfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/slushfile.js -------------------------------------------------------------------------------- /templates/app/_bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "app/public/libs" 3 | } -------------------------------------------------------------------------------- /templates/app/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/app/app/app.js -------------------------------------------------------------------------------- /templates/app/app/assets/icons/play-icon.hqx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/app/app/assets/icons/play-icon.hqx -------------------------------------------------------------------------------- /templates/app/app/assets/icons/play-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/app/app/assets/icons/play-icon.icns -------------------------------------------------------------------------------- /templates/app/app/assets/icons/play-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/app/app/assets/icons/play-icon.ico -------------------------------------------------------------------------------- /templates/app/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/app/app/index.html -------------------------------------------------------------------------------- /templates/app/app/public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/app/app/public/css/app.css -------------------------------------------------------------------------------- /templates/app/app/public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/app/app/public/js/app.js -------------------------------------------------------------------------------- /templates/app/app/public/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/app/app/public/partials/head.html -------------------------------------------------------------------------------- /templates/app/app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/app/app/routes/index.js -------------------------------------------------------------------------------- /templates/app/app/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/app/app/views/index.ejs -------------------------------------------------------------------------------- /templates/app/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/app/bower.json -------------------------------------------------------------------------------- /templates/app/gulpFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/app/gulpFile.js -------------------------------------------------------------------------------- /templates/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/app/package.json -------------------------------------------------------------------------------- /templates/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /templates/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /templates/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /templates/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindr21/slush-wean/HEAD/templates/fonts/glyphicons-halflings-regular.woff --------------------------------------------------------------------------------