An open API service indexing awesome lists of open source software.

https://github.com/connor11528/mean-auth-starter

Starter authentication template using jwt-simple, express, angular and satellizer
https://github.com/connor11528/mean-auth-starter

Last synced: 11 months ago
JSON representation

Starter authentication template using jwt-simple, express, angular and satellizer

Awesome Lists containing this project

README

          

mean-auth-starter
=====

> Authentication: Built with the MEAN stack. (JWT, not passport)

### Getting started
```
$ git clone
$ cd mean-auth-starter
$ npm install
$ nodemon server
```

### Deploy to Heroku
```
heroku create
heroku config:set NODE_ENV=production
heroku addons:create mongolab:sandbox
heroku config | grep MONGOLAB_URI
git push heroku master
heroku ps:scale web=1
```