Skip to content

andfk/angular-drywall

This branch is up to date with arthurkao/angular-drywall:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Oct 10, 2015
e09fa85 · Oct 10, 2015
Apr 29, 2015
Apr 25, 2015
Apr 25, 2015
Sep 4, 2014
Apr 22, 2015
Apr 22, 2015
Feb 10, 2015
Dec 2, 2013
Apr 28, 2015
May 31, 2015
Apr 10, 2015
May 4, 2015
Apr 22, 2015
Apr 23, 2015
Apr 24, 2015
Jan 27, 2014
Oct 10, 2015
Feb 4, 2015
Apr 23, 2015

Repository files navigation

Build Status

A website and user system, implemented with MongoDB, Express, AngularJS and Node.js, a.k.a MEAN stack. Inspired by and forked from Drywall.

Features

  • Versatility because you can
    • Hack your next awesome MEAN stack web app on top of Angular-Drywall, or
    • Use only the client as a non-trivial AngularJS project starter, or
    • Use only the sever as a pure User Management JSON API server.
  • Stand alone RESTful API service capable of serving any http clients, including iOS and Android app.
  • Social Login enabled currently for Facebook and Google.
  • Fully functional user life cycle management.
  • Admin panel provides full CRUD UI on all database entity.
  • Responsive web design supports Mobile-First Development.

Technology

Angular-Drywall's backend is pure Node.js RESTful API Server that renders no html pages . Front-end is built with AngularJS, Bootstrap and SASS. Grunt manages various development, testing and production build tasks.

On The Server On The Client Development
Express AngularJS Grunt
Mongo/Mongoose Bootstrap Npm
Passport SASS Bower
EmailJS Font-Awesome Karma
Moment.js

Live demo

http://angular-drywall.arthurkao.io Hosted on AWS

Requirements

Have these packages installed and running on your system.

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

Installation

$ git clone https://github.com/arthurkao/angular-drywall.git && cd ./angular-drywall
$ npm install
$ cd client && bower install && cd ..

Setup

Interactively setup basic website and necessary database configurations.

$ node init.js

Alternatively, modify config.example.js and initialize database manually. Not recommended.

$ cp ./config.example.js ./config.js
$ vi config.js  #set mongodb and email credentials
$ mongo # use mongo shell to insert required documents. Refer to ./init.js for the list of docs

Running the app

$ grunt

# > grunt

# Running "clean:src" (clean) task
# ...

# Running "concurrent:dev" (concurrent) task
# Running "watch" task
# Running "nodemon:dev" (nodemon) task
# Waiting...
# [nodemon] v1.2.1
# [nodemon] to restart at any time, enter `rs`
# [nodemon] watching: *.*
# [nodemon] starting `node app.js`

Now Angular-Drywall should be up and running at http://localhost:3000.

Login. Customize. Enjoy.

Philosophy

  • MEAN stack web app starter with user management up and running in 5 minutes.
  • Carefully built on top of latest state-of-the-art javascript technologies.
  • RESTful API service that easily serves non-browser (iOS, Android, among others) clients.
  • Single page web application.

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

#{ 'angular-drywall': '0.1.1,
#  http_parser: '1.0',
#  node: '0.10.29',
#  v8: '3.14.5.9',
#  ares: '1.9.0-DEV',
#  uv: '0.10.27',
#  zlib: '1.2.3',
#  modules: '11',
#  openssl: '1.0.1h',
#  npm: '2.1.7' }

Contributions are welcome.

License

MIT

About

A MEAN stack User Management web app

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 76.8%
  • HTML 21.9%
  • CSS 1.3%