Skip to content

asbjornu/drywall

 
 

Repository files navigation

Drywall

A website and user system starter. Implemented with Express and Backbone.

This fork uses sequelize to connect to Relational Database Management Systems instead of using Mongoose to connect to Mongo

Dependency Status devDependency Status

Technology

Server side, Drywall is built with the Express framework. We're using Sequelize to connect to an RDBMS for a data store.

The front-end is built with Backbone. We're using Grunt for the asset pipeline.

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

Live demo

Platform Username Password
https://drywall.herokuapp.com/ root h3r00t

Note: The live demo has been modified so you cannot change the root user, the root user's linked admin role or the root admin group. This was done in order to keep the app ready to use at all times.

Requirements

You need Node.js and a Relational Database Management System such as Postgres installed and running.

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]:trystant/drywall.git && cd ./drywall
$ npm install

Setup

First you need to setup your config files. The main parts of the application are configured in the config.js file in the root directory. Create it by copying config.js.tmpl as such:

$ cp ./config.js.tmpl ./config.js

The database is configured in config/config.json. Create it by copying the config/config.tmpl.json file as such:

$ cp ./config/config.json.tmpl ./config/config.json

Then, change the values of the individual environments (development, test and production). To get everything bootstrapped, just focus on development for now.

{
   "development": {
    "username": "<username>",
    "password": "<password>",
    "database": "<database>",
    "host": "127.0.0.1",
    "dialect": "postgres",
  }
}

PostgreSQL

Next, you need to set up PostgreSQL. Taking for granted that PostgreSQL's binaries exist on your $PATH, you need to execute the following commands to get everything bootstrapped for the development environment (as defined in config/config.json).

createuser <username>
createdb --owner=<username> <database>
psql --dbname=<database> --command="CREATE USER <username> WITH PASSWORD '<password>';"

Running the app

$ npm start

# > [email protected] start /Users/jedireza/projects/jedireza/drywall
# > grunt

# Running "copy:vendor" (copy) task
# ...

# Running "concurrent:dev" (concurrent) task
# Running "watch" task
# Running "nodemon:dev" (nodemon) task
# Waiting...
# [nodemon] v1.3.7
# [nodemon] to restart at any time, enter `rs`
# [nodemon] watching: *.*
# [nodemon] starting `node app.js`
# Server is running on port 3000

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

  • Go to 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.

Testing

The test suite uses mochajs and [supertest] (https://github.com/visionmedia/supertest) to execute end to end testing. The suite can be executed using the command npm test from the top level of the project.

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.
  • User system with separate account and admin roles.
  • Admin groups with shared permission settings.
  • Administrator level permissions that override group permissions.
  • Global admin quick search component.

Questions and contributing

Any issues or questions (no matter how basic), open an issue. Please take the initiative to include basic debugging information like operating system and relevant version details such as:

$ npm version

# { drywall: '0.0.0',
#   npm: '2.5.1',
#   http_parser: '2.3',
#   modules: '14',
#   node: '0.12.0',
#   openssl: '1.0.1l',
#   uv: '1.0.2',
#   v8: '3.28.73',
#   zlib: '1.2.8' }

Contributions are welcome. Your code should:

  • pass $ grunt lint without error

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

License

MIT

About

A website and user system (Express/Backbone)

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 74.5%
  • HTML 23.2%
  • CSS 2.3%