https://github.com/connor11528/express-mongoose-api
Handle database relationships with MongoDB and Node.js
https://github.com/connor11528/express-mongoose-api
Last synced: 3 months ago
JSON representation
Handle database relationships with MongoDB and Node.js
- Host: GitHub
- URL: https://github.com/connor11528/express-mongoose-api
- Owner: connor11528
- Created: 2019-07-11T17:52:35.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T22:31:24.000Z (about 3 years ago)
- Last Synced: 2025-04-21T21:39:52.609Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 61.5 KB
- Stars: 3
- Watchers: 1
- Forks: 11
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
MongoDB Mongoose Relationships
=====
> 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
$ npm run start
```
### 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
```