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

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

starter template for MongoDB, Express, Angular, Node apps
https://github.com/connor11528/mean-starter

Last synced: 9 months ago
JSON representation

starter template for MongoDB, Express, Angular, Node apps

Awesome Lists containing this project

README

          

mean-starter
=====

> This is a lightweight starter boilerplate for getting started with MEAN stack apps (MongoDB, Express, Angular, Node.js). In it you can configure environment variables, define models and set up api routes. It is lightweight and much easier to grok than mean.io or mean.js.

> If you are looking for a solution for authentication check out [this repo](https://github.com/cleechtech/node-jwt-intro).

### Getting started
```
$ git clone
$ cd mean-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
```