Skip to content

hoegrammer/drywall

 
 

Repository files navigation

Differences from the standard Drywall

User Entity

This fork of Drywall is simpler in that it does not have separate entities for User, Account and Admin. Instead it just has one User entity.

In standard Drywall, for a user to be a member of a permissioned group, it has to have an Admin entity. The Admin entity is related to the group. In this version, the groups sit on the User entity directly.

The notion of Roles has not been entirely removed, however, I think that is the next step. Groups provide one permissioning system; why have two?

Modularity

I am playing with the idea of making Drywall an npm module which you would install and keep separate from your own code.

There are reasons for and against this.

To this end I have changed the name of app.js to "index.js" and it now exports the app object.

Drywall

A website and user system for Node.js. What you create with Drywall is more important than Drywall.

Dependency Status devDependency Status

Technology

On The Server On The Client Development
Express Bootstrap Grunt
Jade Backbone.js
Mongoose jQuery
Passport Underscore.js
Async Font-Awesome
EmailJS Moment.js

Requirements

You need Node.js and MongoDB installed and running.

We use Grunt as our task runner. Get the CLI (command line interface).

$ npm install grunt-cli -g

We use bcrypt for hashing secrets. If you have issues during installation related to bcrypt then refer to this wiki page.

Installation

$ git clone [email protected]:layerzerolabs/drywall.git && cd ./drywall
$ npm install
$ mv ./config.example.js ./config.js #set mongodb and email credentials
$ grunt

Setup

You need a few records in the database to start using the user system.

Run these commands on mongo. Obviously you should use your email address.

use drywall; //your mongo db name
db.admingroups.insert({ _id: 'root', name: 'Root' });
db.users.save({ username: 'root', isActive: 'yes', email: '[email protected]', roles: ['admin'], groups: ['root'] });

Now just use the reset password feature to set a password.

  • http://localhost:3000/login/forgot/
  • Submit your email address and wait a second.
  • Go check your email and get the reset link.
  • http://localhost:3000/login/reset/:email/:token/
  • Set a new password.

Login. Customize. Enjoy.

Philosophy

  • Create a website and user system.
  • Write code in a simple and consistent way.
  • Only create minor utilities or plugins to avoid repetitiveness.
  • Find and use good tools.
  • Use tools in their native/default behavior.

Features

  • Basic front end web pages.
  • Contact page has form to email.
  • Login system with forgot password and reset password.
  • Signup and Login with Facebook, Twitter, GitHub, Google and Tumblr.
  • Optional email verification during signup flow.
  • Simplified user system.
  • Admin groups with shared permission settings.
  • Global admin quick search component.

Contributing

Contributions welcome. Make sure your code passes grunt lint without error.

If you're changing something non-trivial or user-facing, you may want to submit an issue first.

License

MIT

githalytics.com alpha

About

Drywall with a simpler user system

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 96.5%
  • CSS 3.5%