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
- Host: GitHub
- URL: https://github.com/connor11528/mean-auth-starter
- Owner: connor11528
- Created: 2016-01-14T23:19:54.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-29T05:17:34.000Z (over 9 years ago)
- Last Synced: 2025-01-05T13:25:05.316Z (about 1 year ago)
- Language: JavaScript
- Size: 17.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```