{"id":13555993,"url":"https://github.com/jedireza/drywall","last_synced_at":"2025-12-17T06:04:40.774Z","repository":{"id":6044062,"uuid":"7268697","full_name":"jedireza/drywall","owner":"jedireza","description":":construction: Project moved, see Aqua and Frame","archived":true,"fork":false,"pushed_at":"2017-03-24T08:02:05.000Z","size":12169,"stargazers_count":2173,"open_issues_count":0,"forks_count":565,"subscribers_count":121,"default_branch":"master","last_synced_at":"2025-04-13T14:02:39.531Z","etag":null,"topics":["boilerplate","javascript","mongodb","nodejs"],"latest_commit_sha":null,"homepage":"http://jedireza.github.io/aqua/","language":"JavaScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jedireza.png","metadata":{"files":{"readme":"README-original.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-12-21T04:15:26.000Z","updated_at":"2025-04-07T21:04:38.000Z","dependencies_parsed_at":"2022-08-30T10:40:21.683Z","dependency_job_id":null,"html_url":"https://github.com/jedireza/drywall","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/jedireza/drywall","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jedireza%2Fdrywall","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jedireza%2Fdrywall/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jedireza%2Fdrywall/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jedireza%2Fdrywall/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jedireza","download_url":"https://codeload.github.com/jedireza/drywall/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jedireza%2Fdrywall/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277456757,"owners_count":25821036,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-29T02:00:09.175Z","response_time":84,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["boilerplate","javascript","mongodb","nodejs"],"created_at":"2024-08-01T12:03:33.085Z","updated_at":"2025-09-29T02:32:27.442Z","avatar_url":"https://github.com/jedireza.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","nodejs","📦 Legacy \u0026 Inactive Projects"],"sub_categories":[],"readme":"# Drywall\n\nA website and user system starter. Implemented with Express and Backbone.\n\n[![Dependency Status](https://david-dm.org/jedireza/drywall.svg?theme=shields.io)](https://david-dm.org/jedireza/drywall)\n[![devDependency Status](https://david-dm.org/jedireza/drywall/dev-status.svg?theme=shields.io)](https://david-dm.org/jedireza/drywall#info=devDependencies)\n\n\n## Technology\n\nServer side, Drywall is built with the [Express](http://expressjs.com/)\nframework. We're using [MongoDB](http://www.mongodb.org/) as a data store.\n\nThe front-end is built with [Backbone](http://backbonejs.org/).\nWe're using [Grunt](http://gruntjs.com/) for the asset pipeline.\n\n| On The Server | On The Client  | Development |\n| ------------- | -------------- | ----------- |\n| Express       | Bootstrap      | Grunt       |\n| Jade          | Backbone.js    |             |\n| Mongoose      | jQuery         |             |\n| Passport      | Underscore.js  |             |\n| Async         | Font-Awesome   |             |\n| EmailJS       | Moment.js      |             |\n\n\n## Live demo\n\n| Platform                       | Username | Password |\n| ------------------------------ | -------- | -------- |\n| https://drywall.herokuapp.com/ | root     | h3r00t   |\n\n__Note:__ The live demo has been modified so you cannot change the root user,\nthe root user's linked admin role or the root admin group. This was done in\norder to keep the app ready to use at all times.\n\n\n## Requirements\n\nYou need [Node.js](http://nodejs.org/download/) and\n[MongoDB](http://www.mongodb.org/downloads) installed and running.\n\nWe use [`bcrypt`](https://github.com/ncb000gt/node.bcrypt.js) for hashing\nsecrets. If you have issues during installation related to `bcrypt` then [refer\nto this wiki\npage](https://github.com/jedireza/drywall/wiki/bcrypt-Installation-Trouble).\n\nWe use [`emailjs`](https://github.com/eleith/emailjs) for email transport. If\nyou have issues sending email [refer to this wiki\npage](https://github.com/jedireza/drywall/wiki/Trouble-sending-email).\n\n\n## Installation\n\n```bash\n$ git clone git@github.com:jedireza/drywall.git \u0026\u0026 cd ./drywall\n$ npm install\n```\n\n\n## Setup\n\nFirst you need to setup your config file.\n\n```bash\n$ mv ./config.example.js ./config.js #set mongodb and email credentials\n```\n\nNext, you need a few records in the database to start using the user system.\n\nRun these commands on mongo via the terminal. __Obviously you should use your\nemail address.__\n\n```js\nuse drywall; // or your mongo db name if different\n```\n\n```js\ndb.admingroups.insert({ _id: 'root', name: 'Root' });\ndb.admins.insert({ name: {first: 'Root', last: 'Admin', full: 'Root Admin'}, groups: ['root'] });\nvar rootAdmin = db.admins.findOne();\ndb.users.save({ username: 'root', isActive: 'yes', email: 'your@email.addy', roles: {admin: rootAdmin._id} });\nvar rootUser = db.users.findOne();\nrootAdmin.user = { id: rootUser._id, name: rootUser.username };\ndb.admins.save(rootAdmin);\n```\n\n\n## Running the app\n\n```bash\n$ npm start\n\n# \u003e Drywall@0.0.0 start /Users/jedireza/projects/jedireza/drywall\n# \u003e grunt\n\n# Running \"copy:vendor\" (copy) task\n# ...\n\n# Running \"concurrent:dev\" (concurrent) task\n# Running \"watch\" task\n# Running \"nodemon:dev\" (nodemon) task\n# Waiting...\n# [nodemon] v1.3.7\n# [nodemon] to restart at any time, enter `rs`\n# [nodemon] watching: *.*\n# [nodemon] starting `node app.js`\n# Server is running on port 3000\n```\n\nNow just use the reset password feature to set a password.\n\n - Go to `http://localhost:3000/login/forgot/`\n - Submit your email address and wait a second.\n - Go check your email and get the reset link.\n - `http://localhost:3000/login/reset/:email/:token/`\n - Set a new password.\n\nLogin. Customize. Enjoy.\n\n\n## Philosophy\n\n - Create a website and user system.\n - Write code in a simple and consistent way.\n - Only create minor utilities or plugins to avoid repetitiveness.\n - Find and use good tools.\n - Use tools in their native/default behavior.\n\n\n## Features\n\n - Basic front end web pages.\n - Contact page has form to email.\n - Login system with forgot password and reset password.\n - Signup and Login with Facebook, Twitter, GitHub, Google and Tumblr.\n - Optional email verification during signup flow.\n - User system with separate account and admin roles.\n - Admin groups with shared permission settings.\n - Administrator level permissions that override group permissions.\n - Global admin quick search component.\n\n\n## Questions and contributing\n\nAny issues or questions (no matter how basic), open an issue. Please take the\ninitiative to include basic debugging information like operating system\nand relevant version details such as:\n\n```bash\n$ npm version\n\n# { drywall: '0.0.0',\n#   npm: '2.5.1',\n#   http_parser: '2.3',\n#   modules: '14',\n#   node: '0.12.0',\n#   openssl: '1.0.1l',\n#   uv: '1.0.2',\n#   v8: '3.28.73',\n#   zlib: '1.2.8' }\n```\n\nContributions are welcome. Your code should:\n\n - pass `$ grunt lint` without error\n\nIf you're changing something non-trivial, you may want to submit an issue\nfirst.\n\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjedireza%2Fdrywall","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjedireza%2Fdrywall","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjedireza%2Fdrywall/lists"}