├── .env.sample ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .nodemonignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE.md ├── Procfile ├── README.md ├── client ├── images │ ├── 404pinkybrain.gif │ ├── agenda.png │ ├── angularjs.png │ ├── expressjs.png │ ├── favicon.ico │ ├── greenpioneer.png │ ├── logo │ │ ├── darkheader.png │ │ ├── darkheader2x.png │ │ ├── darkheader3x.png │ │ ├── darkiconword 2x.png │ │ ├── darkiconword 3x.png │ │ ├── darkiconword.png │ │ ├── favicon.ico │ │ ├── header.png │ │ ├── header2x.png │ │ ├── header3x.png │ │ ├── icon.png │ │ ├── icon2x.png │ │ ├── icon3x.png │ │ ├── iconword.png │ │ ├── iconword2x.png │ │ └── iconword3x.png │ ├── mean.png │ ├── mongodb.png │ ├── mongoexpress.png │ ├── nightwatch.png │ ├── nodejs.png │ ├── plato.png │ └── swagger.png ├── modules │ ├── admin │ │ ├── admin.controller.js │ │ ├── admin.factory.js │ │ ├── admin.module.js │ │ ├── admin.routes.js │ │ ├── admin.spec.js │ │ ├── admin.style.scss │ │ ├── errors.view.html │ │ ├── home.view.html │ │ ├── log.view.html │ │ ├── messages.view.html │ │ ├── options.view.html │ │ ├── transactions.view.html │ │ ├── users.view.html │ │ └── view.view.html │ ├── blog │ │ ├── blog.controller.js │ │ ├── blog.factory.js │ │ ├── blog.module.js │ │ ├── blog.routes.js │ │ ├── blog.spec.js │ │ ├── blog.style.css │ │ ├── blog.style.less │ │ ├── blog.style.scss │ │ ├── create.view.html │ │ ├── edit.view.html │ │ ├── list.view.html │ │ └── view.view.html │ ├── chat │ │ ├── chat.controller.js │ │ ├── chat.module.js │ │ ├── chat.routes.js │ │ └── chat.view.html │ ├── client.module.js │ ├── core │ │ ├── 404.view.html │ │ ├── 500.view.html │ │ ├── core.config.js │ │ ├── core.controller.js │ │ ├── core.directive.js │ │ ├── core.factory.js │ │ ├── core.module.js │ │ ├── core.route.js │ │ ├── core.service.js │ │ ├── core.spec.js │ │ ├── core.view.html │ │ ├── debug.view.html │ │ ├── storage.factory.js │ │ ├── util.config.js │ │ ├── util.factory.js │ │ └── util.provider.js │ ├── footer │ │ ├── footer.controller.js │ │ ├── footer.module.js │ │ ├── footer.spec.js │ │ ├── footer.style.scss │ │ └── footer.view.html │ ├── header │ │ ├── header.controller.js │ │ ├── header.module.js │ │ ├── header.spec.js │ │ └── header.view.html │ ├── index │ │ ├── artboard.view.html │ │ ├── index.controller.js │ │ ├── index.module.js │ │ ├── index.routes.js │ │ ├── index.spec.js │ │ ├── index.style.css │ │ ├── index.style.less │ │ ├── index.style.scss │ │ └── index.view.html │ └── user │ │ ├── account.view.html │ │ ├── forgot.view.html │ │ ├── reset.view.html │ │ ├── signin.view.html │ │ ├── signup.view.html │ │ ├── user.controller.js │ │ ├── user.factory.js │ │ ├── user.module.js │ │ ├── user.routes.js │ │ └── user.spec.js └── styles │ ├── global-variables.styles.scss │ └── global.style.scss ├── commands ├── blank │ ├── client │ │ ├── controller.js │ │ ├── factory.js │ │ ├── module.js │ │ ├── routes.js │ │ ├── spec.js │ │ ├── style.scss │ │ └── view.view.html │ └── server │ │ ├── controller.js │ │ ├── model.js │ │ ├── routes.js │ │ ├── socket.js │ │ └── spec.js ├── cli.js ├── questions.js └── template │ ├── client │ ├── controller.js │ ├── create.view.html │ ├── edit.view.html │ ├── factory.js │ ├── list.view.html │ ├── module.js │ ├── routes.js │ ├── spec.js │ ├── style.scss │ └── view.view.html │ └── server │ ├── controller.js │ ├── model.js │ ├── routes.js │ ├── socket.js │ └── spec.js ├── configs ├── certificates │ ├── certExample.pem │ └── keyExample.pem ├── environment.js ├── environments │ ├── development.js │ ├── nightwatch.js │ ├── production.js │ └── test.js ├── seo.js └── settings.js ├── documentation ├── API.md ├── CLI.md ├── Changelog.md ├── Client.md ├── Configs.md ├── Development-Document.md ├── Errors.md ├── FAQ.md ├── File-Naming-Structure.md ├── Folder-Structure.md ├── Getting-Started.md ├── Home.md ├── Operations-Document.md ├── Roadmap.md ├── Scripts.md ├── Server.md ├── Servers.md ├── Testing.md ├── Tools.md └── _Footer.md ├── index.js ├── nightwatch.json ├── package.json ├── run.js ├── scripts ├── generate-a11y-report.js ├── generate-api-doc.js ├── generate-changelog.js ├── generate-development-doc.js ├── generate-ops-doc.js ├── generate-ssl-certs.sh ├── mongodb-install.sh ├── nodejs-change-version.sh ├── nodejs-install.sh ├── postinstall.js ├── set-proxies.sh ├── start-mongod.sh ├── unset-proxies.sh └── update-meanstackjs.js ├── server.mean.js ├── server.socketio.js ├── server ├── authentication.js ├── cdn.js ├── config.js ├── db.js ├── error.js ├── headers.js ├── layout │ └── index.html ├── logger.js ├── mail.js ├── middleware.js ├── modules │ ├── admin │ │ ├── admin.controller.js │ │ ├── admin.routes.js │ │ ├── admin.spec.js │ │ └── error.model.js │ ├── blog │ │ ├── blog.controller.js │ │ ├── blog.model.js │ │ ├── blog.routes.js │ │ └── blog.spec.js │ ├── chat │ │ ├── chat.controller.js │ │ └── chat.socket.js │ ├── system │ │ ├── setting.view.pug │ │ ├── system.controller.js │ │ ├── system.routes.js │ │ └── system.spec.js │ └── users │ │ ├── users.controller.js │ │ ├── users.model.js │ │ ├── users.routes.js │ │ └── users.spec.js ├── passport.js ├── prerenderer.js ├── register.js ├── routes.js ├── security.js ├── seo.js ├── token.js └── tools.js ├── tests ├── e2e │ ├── admin.js │ ├── general.js │ ├── login.js │ └── seo.js ├── globals.js ├── seed.js └── unit │ ├── karma.test.js │ └── mocha.test.js ├── tools ├── agenda │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── yarn.lock ├── livereload │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── server.livereload.js │ └── yarn.lock ├── mongo_express │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── server.mongo_express.js │ └── yarn.lock ├── nightwatch │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── yarn.lock ├── plato │ ├── index.js │ ├── package-lock.json │ └── package.json └── swagger │ ├── index.js │ ├── modules │ ├── blogs │ │ ├── models.js │ │ └── services.js │ └── users │ │ ├── models.js │ │ └── services.js │ ├── package-lock.json │ ├── package.json │ └── yarn.lock └── yarn.lock /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.nodemonignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/.nodemonignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm start -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/README.md -------------------------------------------------------------------------------- /client/images/404pinkybrain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/404pinkybrain.gif -------------------------------------------------------------------------------- /client/images/agenda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/agenda.png -------------------------------------------------------------------------------- /client/images/angularjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/angularjs.png -------------------------------------------------------------------------------- /client/images/expressjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/expressjs.png -------------------------------------------------------------------------------- /client/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/favicon.ico -------------------------------------------------------------------------------- /client/images/greenpioneer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/greenpioneer.png -------------------------------------------------------------------------------- /client/images/logo/darkheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/darkheader.png -------------------------------------------------------------------------------- /client/images/logo/darkheader2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/darkheader2x.png -------------------------------------------------------------------------------- /client/images/logo/darkheader3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/darkheader3x.png -------------------------------------------------------------------------------- /client/images/logo/darkiconword 2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/darkiconword 2x.png -------------------------------------------------------------------------------- /client/images/logo/darkiconword 3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/darkiconword 3x.png -------------------------------------------------------------------------------- /client/images/logo/darkiconword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/darkiconword.png -------------------------------------------------------------------------------- /client/images/logo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/favicon.ico -------------------------------------------------------------------------------- /client/images/logo/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/header.png -------------------------------------------------------------------------------- /client/images/logo/header2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/header2x.png -------------------------------------------------------------------------------- /client/images/logo/header3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/header3x.png -------------------------------------------------------------------------------- /client/images/logo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/icon.png -------------------------------------------------------------------------------- /client/images/logo/icon2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/icon2x.png -------------------------------------------------------------------------------- /client/images/logo/icon3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/icon3x.png -------------------------------------------------------------------------------- /client/images/logo/iconword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/iconword.png -------------------------------------------------------------------------------- /client/images/logo/iconword2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/iconword2x.png -------------------------------------------------------------------------------- /client/images/logo/iconword3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/logo/iconword3x.png -------------------------------------------------------------------------------- /client/images/mean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/mean.png -------------------------------------------------------------------------------- /client/images/mongodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/mongodb.png -------------------------------------------------------------------------------- /client/images/mongoexpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/mongoexpress.png -------------------------------------------------------------------------------- /client/images/nightwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/nightwatch.png -------------------------------------------------------------------------------- /client/images/nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/nodejs.png -------------------------------------------------------------------------------- /client/images/plato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/plato.png -------------------------------------------------------------------------------- /client/images/swagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/images/swagger.png -------------------------------------------------------------------------------- /client/modules/admin/admin.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/admin.controller.js -------------------------------------------------------------------------------- /client/modules/admin/admin.factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/admin.factory.js -------------------------------------------------------------------------------- /client/modules/admin/admin.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/admin.module.js -------------------------------------------------------------------------------- /client/modules/admin/admin.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/admin.routes.js -------------------------------------------------------------------------------- /client/modules/admin/admin.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/admin.spec.js -------------------------------------------------------------------------------- /client/modules/admin/admin.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/admin.style.scss -------------------------------------------------------------------------------- /client/modules/admin/errors.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/errors.view.html -------------------------------------------------------------------------------- /client/modules/admin/home.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/home.view.html -------------------------------------------------------------------------------- /client/modules/admin/log.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/log.view.html -------------------------------------------------------------------------------- /client/modules/admin/messages.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/messages.view.html -------------------------------------------------------------------------------- /client/modules/admin/options.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/options.view.html -------------------------------------------------------------------------------- /client/modules/admin/transactions.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/transactions.view.html -------------------------------------------------------------------------------- /client/modules/admin/users.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/users.view.html -------------------------------------------------------------------------------- /client/modules/admin/view.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/admin/view.view.html -------------------------------------------------------------------------------- /client/modules/blog/blog.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/blog/blog.controller.js -------------------------------------------------------------------------------- /client/modules/blog/blog.factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/blog/blog.factory.js -------------------------------------------------------------------------------- /client/modules/blog/blog.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/blog/blog.module.js -------------------------------------------------------------------------------- /client/modules/blog/blog.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/blog/blog.routes.js -------------------------------------------------------------------------------- /client/modules/blog/blog.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/blog/blog.spec.js -------------------------------------------------------------------------------- /client/modules/blog/blog.style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/blog/blog.style.css -------------------------------------------------------------------------------- /client/modules/blog/blog.style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/blog/blog.style.less -------------------------------------------------------------------------------- /client/modules/blog/blog.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/blog/blog.style.scss -------------------------------------------------------------------------------- /client/modules/blog/create.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/blog/create.view.html -------------------------------------------------------------------------------- /client/modules/blog/edit.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/blog/edit.view.html -------------------------------------------------------------------------------- /client/modules/blog/list.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/blog/list.view.html -------------------------------------------------------------------------------- /client/modules/blog/view.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/blog/view.view.html -------------------------------------------------------------------------------- /client/modules/chat/chat.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/chat/chat.controller.js -------------------------------------------------------------------------------- /client/modules/chat/chat.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/chat/chat.module.js -------------------------------------------------------------------------------- /client/modules/chat/chat.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/chat/chat.routes.js -------------------------------------------------------------------------------- /client/modules/chat/chat.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/chat/chat.view.html -------------------------------------------------------------------------------- /client/modules/client.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/client.module.js -------------------------------------------------------------------------------- /client/modules/core/404.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/404.view.html -------------------------------------------------------------------------------- /client/modules/core/500.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/500.view.html -------------------------------------------------------------------------------- /client/modules/core/core.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/core.config.js -------------------------------------------------------------------------------- /client/modules/core/core.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/core.controller.js -------------------------------------------------------------------------------- /client/modules/core/core.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/core.directive.js -------------------------------------------------------------------------------- /client/modules/core/core.factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/core.factory.js -------------------------------------------------------------------------------- /client/modules/core/core.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/core.module.js -------------------------------------------------------------------------------- /client/modules/core/core.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/core.route.js -------------------------------------------------------------------------------- /client/modules/core/core.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/core.service.js -------------------------------------------------------------------------------- /client/modules/core/core.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/core.spec.js -------------------------------------------------------------------------------- /client/modules/core/core.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/core.view.html -------------------------------------------------------------------------------- /client/modules/core/debug.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/debug.view.html -------------------------------------------------------------------------------- /client/modules/core/storage.factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/storage.factory.js -------------------------------------------------------------------------------- /client/modules/core/util.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/util.config.js -------------------------------------------------------------------------------- /client/modules/core/util.factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/util.factory.js -------------------------------------------------------------------------------- /client/modules/core/util.provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/core/util.provider.js -------------------------------------------------------------------------------- /client/modules/footer/footer.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/footer/footer.controller.js -------------------------------------------------------------------------------- /client/modules/footer/footer.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/footer/footer.module.js -------------------------------------------------------------------------------- /client/modules/footer/footer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/footer/footer.spec.js -------------------------------------------------------------------------------- /client/modules/footer/footer.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/footer/footer.style.scss -------------------------------------------------------------------------------- /client/modules/footer/footer.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/footer/footer.view.html -------------------------------------------------------------------------------- /client/modules/header/header.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/header/header.controller.js -------------------------------------------------------------------------------- /client/modules/header/header.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/header/header.module.js -------------------------------------------------------------------------------- /client/modules/header/header.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/header/header.spec.js -------------------------------------------------------------------------------- /client/modules/header/header.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/header/header.view.html -------------------------------------------------------------------------------- /client/modules/index/artboard.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/index/artboard.view.html -------------------------------------------------------------------------------- /client/modules/index/index.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/index/index.controller.js -------------------------------------------------------------------------------- /client/modules/index/index.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/index/index.module.js -------------------------------------------------------------------------------- /client/modules/index/index.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/index/index.routes.js -------------------------------------------------------------------------------- /client/modules/index/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/index/index.spec.js -------------------------------------------------------------------------------- /client/modules/index/index.style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/index/index.style.css -------------------------------------------------------------------------------- /client/modules/index/index.style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/index/index.style.less -------------------------------------------------------------------------------- /client/modules/index/index.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/index/index.style.scss -------------------------------------------------------------------------------- /client/modules/index/index.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/index/index.view.html -------------------------------------------------------------------------------- /client/modules/user/account.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/user/account.view.html -------------------------------------------------------------------------------- /client/modules/user/forgot.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/user/forgot.view.html -------------------------------------------------------------------------------- /client/modules/user/reset.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/user/reset.view.html -------------------------------------------------------------------------------- /client/modules/user/signin.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/user/signin.view.html -------------------------------------------------------------------------------- /client/modules/user/signup.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/user/signup.view.html -------------------------------------------------------------------------------- /client/modules/user/user.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/user/user.controller.js -------------------------------------------------------------------------------- /client/modules/user/user.factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/user/user.factory.js -------------------------------------------------------------------------------- /client/modules/user/user.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/user/user.module.js -------------------------------------------------------------------------------- /client/modules/user/user.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/user/user.routes.js -------------------------------------------------------------------------------- /client/modules/user/user.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/modules/user/user.spec.js -------------------------------------------------------------------------------- /client/styles/global-variables.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/styles/global-variables.styles.scss -------------------------------------------------------------------------------- /client/styles/global.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/client/styles/global.style.scss -------------------------------------------------------------------------------- /commands/blank/client/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/blank/client/controller.js -------------------------------------------------------------------------------- /commands/blank/client/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/blank/client/factory.js -------------------------------------------------------------------------------- /commands/blank/client/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/blank/client/module.js -------------------------------------------------------------------------------- /commands/blank/client/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/blank/client/routes.js -------------------------------------------------------------------------------- /commands/blank/client/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/blank/client/spec.js -------------------------------------------------------------------------------- /commands/blank/client/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/blank/client/style.scss -------------------------------------------------------------------------------- /commands/blank/client/view.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/blank/client/view.view.html -------------------------------------------------------------------------------- /commands/blank/server/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/blank/server/controller.js -------------------------------------------------------------------------------- /commands/blank/server/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/blank/server/model.js -------------------------------------------------------------------------------- /commands/blank/server/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/blank/server/routes.js -------------------------------------------------------------------------------- /commands/blank/server/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/blank/server/socket.js -------------------------------------------------------------------------------- /commands/blank/server/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/blank/server/spec.js -------------------------------------------------------------------------------- /commands/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/cli.js -------------------------------------------------------------------------------- /commands/questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/questions.js -------------------------------------------------------------------------------- /commands/template/client/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/client/controller.js -------------------------------------------------------------------------------- /commands/template/client/create.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/client/create.view.html -------------------------------------------------------------------------------- /commands/template/client/edit.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/client/edit.view.html -------------------------------------------------------------------------------- /commands/template/client/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/client/factory.js -------------------------------------------------------------------------------- /commands/template/client/list.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/client/list.view.html -------------------------------------------------------------------------------- /commands/template/client/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/client/module.js -------------------------------------------------------------------------------- /commands/template/client/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/client/routes.js -------------------------------------------------------------------------------- /commands/template/client/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/client/spec.js -------------------------------------------------------------------------------- /commands/template/client/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/client/style.scss -------------------------------------------------------------------------------- /commands/template/client/view.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/client/view.view.html -------------------------------------------------------------------------------- /commands/template/server/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/server/controller.js -------------------------------------------------------------------------------- /commands/template/server/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/server/model.js -------------------------------------------------------------------------------- /commands/template/server/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/server/routes.js -------------------------------------------------------------------------------- /commands/template/server/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/server/socket.js -------------------------------------------------------------------------------- /commands/template/server/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/commands/template/server/spec.js -------------------------------------------------------------------------------- /configs/certificates/certExample.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/configs/certificates/certExample.pem -------------------------------------------------------------------------------- /configs/certificates/keyExample.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/configs/certificates/keyExample.pem -------------------------------------------------------------------------------- /configs/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/configs/environment.js -------------------------------------------------------------------------------- /configs/environments/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/configs/environments/development.js -------------------------------------------------------------------------------- /configs/environments/nightwatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/configs/environments/nightwatch.js -------------------------------------------------------------------------------- /configs/environments/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/configs/environments/production.js -------------------------------------------------------------------------------- /configs/environments/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/configs/environments/test.js -------------------------------------------------------------------------------- /configs/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/configs/seo.js -------------------------------------------------------------------------------- /configs/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/configs/settings.js -------------------------------------------------------------------------------- /documentation/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/API.md -------------------------------------------------------------------------------- /documentation/CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/CLI.md -------------------------------------------------------------------------------- /documentation/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Changelog.md -------------------------------------------------------------------------------- /documentation/Client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Client.md -------------------------------------------------------------------------------- /documentation/Configs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Configs.md -------------------------------------------------------------------------------- /documentation/Development-Document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Development-Document.md -------------------------------------------------------------------------------- /documentation/Errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Errors.md -------------------------------------------------------------------------------- /documentation/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/FAQ.md -------------------------------------------------------------------------------- /documentation/File-Naming-Structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/File-Naming-Structure.md -------------------------------------------------------------------------------- /documentation/Folder-Structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Folder-Structure.md -------------------------------------------------------------------------------- /documentation/Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Getting-Started.md -------------------------------------------------------------------------------- /documentation/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Home.md -------------------------------------------------------------------------------- /documentation/Operations-Document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Operations-Document.md -------------------------------------------------------------------------------- /documentation/Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Roadmap.md -------------------------------------------------------------------------------- /documentation/Scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Scripts.md -------------------------------------------------------------------------------- /documentation/Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Server.md -------------------------------------------------------------------------------- /documentation/Servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Servers.md -------------------------------------------------------------------------------- /documentation/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Testing.md -------------------------------------------------------------------------------- /documentation/Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/Tools.md -------------------------------------------------------------------------------- /documentation/_Footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/documentation/_Footer.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/index.js -------------------------------------------------------------------------------- /nightwatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/nightwatch.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/package.json -------------------------------------------------------------------------------- /run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/run.js -------------------------------------------------------------------------------- /scripts/generate-a11y-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/scripts/generate-a11y-report.js -------------------------------------------------------------------------------- /scripts/generate-api-doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/scripts/generate-api-doc.js -------------------------------------------------------------------------------- /scripts/generate-changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/scripts/generate-changelog.js -------------------------------------------------------------------------------- /scripts/generate-development-doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/scripts/generate-development-doc.js -------------------------------------------------------------------------------- /scripts/generate-ops-doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/scripts/generate-ops-doc.js -------------------------------------------------------------------------------- /scripts/generate-ssl-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/scripts/generate-ssl-certs.sh -------------------------------------------------------------------------------- /scripts/mongodb-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/scripts/mongodb-install.sh -------------------------------------------------------------------------------- /scripts/nodejs-change-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/scripts/nodejs-change-version.sh -------------------------------------------------------------------------------- /scripts/nodejs-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/scripts/nodejs-install.sh -------------------------------------------------------------------------------- /scripts/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/scripts/postinstall.js -------------------------------------------------------------------------------- /scripts/set-proxies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/scripts/set-proxies.sh -------------------------------------------------------------------------------- /scripts/start-mongod.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | mongod --rest #--dbpath -------------------------------------------------------------------------------- /scripts/unset-proxies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/scripts/unset-proxies.sh -------------------------------------------------------------------------------- /scripts/update-meanstackjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/scripts/update-meanstackjs.js -------------------------------------------------------------------------------- /server.mean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server.mean.js -------------------------------------------------------------------------------- /server.socketio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server.socketio.js -------------------------------------------------------------------------------- /server/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/authentication.js -------------------------------------------------------------------------------- /server/cdn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/cdn.js -------------------------------------------------------------------------------- /server/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/config.js -------------------------------------------------------------------------------- /server/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/db.js -------------------------------------------------------------------------------- /server/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/error.js -------------------------------------------------------------------------------- /server/headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/headers.js -------------------------------------------------------------------------------- /server/layout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/layout/index.html -------------------------------------------------------------------------------- /server/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/logger.js -------------------------------------------------------------------------------- /server/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/mail.js -------------------------------------------------------------------------------- /server/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/middleware.js -------------------------------------------------------------------------------- /server/modules/admin/admin.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/admin/admin.controller.js -------------------------------------------------------------------------------- /server/modules/admin/admin.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/admin/admin.routes.js -------------------------------------------------------------------------------- /server/modules/admin/admin.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/admin/admin.spec.js -------------------------------------------------------------------------------- /server/modules/admin/error.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/admin/error.model.js -------------------------------------------------------------------------------- /server/modules/blog/blog.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/blog/blog.controller.js -------------------------------------------------------------------------------- /server/modules/blog/blog.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/blog/blog.model.js -------------------------------------------------------------------------------- /server/modules/blog/blog.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/blog/blog.routes.js -------------------------------------------------------------------------------- /server/modules/blog/blog.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/blog/blog.spec.js -------------------------------------------------------------------------------- /server/modules/chat/chat.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/chat/chat.controller.js -------------------------------------------------------------------------------- /server/modules/chat/chat.socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/chat/chat.socket.js -------------------------------------------------------------------------------- /server/modules/system/setting.view.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/system/setting.view.pug -------------------------------------------------------------------------------- /server/modules/system/system.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/system/system.controller.js -------------------------------------------------------------------------------- /server/modules/system/system.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/system/system.routes.js -------------------------------------------------------------------------------- /server/modules/system/system.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/system/system.spec.js -------------------------------------------------------------------------------- /server/modules/users/users.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/users/users.controller.js -------------------------------------------------------------------------------- /server/modules/users/users.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/users/users.model.js -------------------------------------------------------------------------------- /server/modules/users/users.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/users/users.routes.js -------------------------------------------------------------------------------- /server/modules/users/users.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/modules/users/users.spec.js -------------------------------------------------------------------------------- /server/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/passport.js -------------------------------------------------------------------------------- /server/prerenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/prerenderer.js -------------------------------------------------------------------------------- /server/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/register.js -------------------------------------------------------------------------------- /server/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/routes.js -------------------------------------------------------------------------------- /server/security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/security.js -------------------------------------------------------------------------------- /server/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/seo.js -------------------------------------------------------------------------------- /server/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/token.js -------------------------------------------------------------------------------- /server/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/server/tools.js -------------------------------------------------------------------------------- /tests/e2e/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tests/e2e/admin.js -------------------------------------------------------------------------------- /tests/e2e/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tests/e2e/general.js -------------------------------------------------------------------------------- /tests/e2e/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tests/e2e/login.js -------------------------------------------------------------------------------- /tests/e2e/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tests/e2e/seo.js -------------------------------------------------------------------------------- /tests/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tests/globals.js -------------------------------------------------------------------------------- /tests/seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tests/seed.js -------------------------------------------------------------------------------- /tests/unit/karma.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tests/unit/karma.test.js -------------------------------------------------------------------------------- /tests/unit/mocha.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tests/unit/mocha.test.js -------------------------------------------------------------------------------- /tools/agenda/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/agenda/index.js -------------------------------------------------------------------------------- /tools/agenda/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/agenda/package-lock.json -------------------------------------------------------------------------------- /tools/agenda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/agenda/package.json -------------------------------------------------------------------------------- /tools/agenda/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/agenda/yarn.lock -------------------------------------------------------------------------------- /tools/livereload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/livereload/index.js -------------------------------------------------------------------------------- /tools/livereload/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/livereload/package-lock.json -------------------------------------------------------------------------------- /tools/livereload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/livereload/package.json -------------------------------------------------------------------------------- /tools/livereload/server.livereload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/livereload/server.livereload.js -------------------------------------------------------------------------------- /tools/livereload/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/livereload/yarn.lock -------------------------------------------------------------------------------- /tools/mongo_express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/mongo_express/index.js -------------------------------------------------------------------------------- /tools/mongo_express/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/mongo_express/package-lock.json -------------------------------------------------------------------------------- /tools/mongo_express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/mongo_express/package.json -------------------------------------------------------------------------------- /tools/mongo_express/server.mongo_express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/mongo_express/server.mongo_express.js -------------------------------------------------------------------------------- /tools/mongo_express/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/mongo_express/yarn.lock -------------------------------------------------------------------------------- /tools/nightwatch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/nightwatch/index.js -------------------------------------------------------------------------------- /tools/nightwatch/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/nightwatch/package-lock.json -------------------------------------------------------------------------------- /tools/nightwatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/nightwatch/package.json -------------------------------------------------------------------------------- /tools/nightwatch/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/nightwatch/yarn.lock -------------------------------------------------------------------------------- /tools/plato/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/plato/index.js -------------------------------------------------------------------------------- /tools/plato/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/plato/package-lock.json -------------------------------------------------------------------------------- /tools/plato/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/plato/package.json -------------------------------------------------------------------------------- /tools/swagger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/swagger/index.js -------------------------------------------------------------------------------- /tools/swagger/modules/blogs/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/swagger/modules/blogs/models.js -------------------------------------------------------------------------------- /tools/swagger/modules/blogs/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/swagger/modules/blogs/services.js -------------------------------------------------------------------------------- /tools/swagger/modules/users/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/swagger/modules/users/models.js -------------------------------------------------------------------------------- /tools/swagger/modules/users/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/swagger/modules/users/services.js -------------------------------------------------------------------------------- /tools/swagger/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/swagger/package-lock.json -------------------------------------------------------------------------------- /tools/swagger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/swagger/package.json -------------------------------------------------------------------------------- /tools/swagger/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/tools/swagger/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenpioneersolutions/meanstackjs/HEAD/yarn.lock --------------------------------------------------------------------------------