https://github.com/leonardofurnielis/node-mongodb
🌱 Node.js bootstrap for building production-ready RESTful application MongoDb
https://github.com/leonardofurnielis/node-mongodb
boilerplate bootstrap docker mongodb node template
Last synced: 3 months ago
JSON representation
🌱 Node.js bootstrap for building production-ready RESTful application MongoDb
- Host: GitHub
- URL: https://github.com/leonardofurnielis/node-mongodb
- Owner: leonardofurnielis
- Created: 2020-10-05T19:22:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-06T02:03:15.000Z (over 2 years ago)
- Last Synced: 2024-03-06T03:23:42.866Z (over 2 years ago)
- Topics: boilerplate, bootstrap, docker, mongodb, node, template
- Language: JavaScript
- Homepage:
- Size: 337 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

[](https://codecov.io/gh/leonardofurnielis/node-mongodb)
## Table of Contents
- Developing locally
- [Native runtime](#native-runtime)
- [Containerized](#containerized)
## Native runtime
To run this code in your computer execute the following commands into project root directory
```bash
npm install
npm start
```
## Containerized
To run this code using Docker container execute the following commands into project root directory
```bash
docker build -t node-mongodb .
docker run -p 8080:3000 -d node-mongodb
```