https://github.com/codersguild/mongo-pern-backend
MongoDB, Node.js, Express, Prisma, PostgreSQL, Redis & Socket-io with Heroku deploy and GraphQL. Starter Template
https://github.com/codersguild/mongo-pern-backend
Last synced: about 1 month ago
JSON representation
MongoDB, Node.js, Express, Prisma, PostgreSQL, Redis & Socket-io with Heroku deploy and GraphQL. Starter Template
- Host: GitHub
- URL: https://github.com/codersguild/mongo-pern-backend
- Owner: codersguild
- License: gpl-3.0
- Created: 2020-05-10T13:30:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-24T11:06:22.000Z (over 4 years ago)
- Last Synced: 2024-12-28T01:29:24.964Z (12 months ago)
- Language: JavaScript
- Homepage: https://backend-starter-1.herokuapp.com/
- Size: 174 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# App Backend
Node.js based backend Template
## Install dependencies :
```
$ npm install
```
## Run the app :
```
$ npm start
```
## Docker Containers for Mongo & Postgres
```bash
$ docker-compose up -d
// Stop Containers
$ docker-compose down
$ docker stop $(docker ps -aq)
// Remove Containers
$ docker rm -f $(docker ps -aq)
```
MongoDB Connection STRING : mongodb://YourUsername:YourPasswordHere@127.0.0.1:27017/your-database-name
### Node.js Patterns (TBD)
[Some Node.js Patterns](https://softwareontheroad.com/ideal-nodejs-project-structure/?utm_source=github&utm_medium=readme)