Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 1.07 KB

README.md

File metadata and controls

26 lines (21 loc) · 1.07 KB

Mean Skeleton

A Todo App built using MEAN stack for quick starting web apps, containing social and local auth, CRUD and best practices to organise codebase.

Authentication is done using passport.js (session based authentication) and is handled by server, Angular getting bootstrapped after the authentication has been finished.


Getting Started

  • Perform a clone of this repo git clone https://github.com/arbazsiddiqui/MEAN-skeleton
  • Install Mongodb on your system.
  • Install the required packages npm install
  • If you want social auth obtain your google and facebook ID's and secret's.
  • Create a secret.js file in the main project folder :
module.exports = {
  googleClientID : 'googleClientID',
  googleClientSecret : 'googleClientSecret',
  facebookClientID : 'facebookClientID',
  facebookClientSecret : 'facebookClientSecret',
  sessionSecret : 'sessionSecret'
};