https://github.com/moikapy/moinode
Docker Repo for NodeJS/Express projects hosted on Nginx
https://github.com/moikapy/moinode
development docker express moiboi-cli nginx nodejs npm production yarn
Last synced: 2 months ago
JSON representation
Docker Repo for NodeJS/Express projects hosted on Nginx
- Host: GitHub
- URL: https://github.com/moikapy/moinode
- Owner: Moikapy
- License: mit
- Created: 2019-05-22T14:01:40.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T22:23:30.000Z (over 3 years ago)
- Last Synced: 2025-05-22T10:56:48.339Z (about 1 year ago)
- Topics: development, docker, express, moiboi-cli, nginx, nodejs, npm, production, yarn
- Language: HTML
- Homepage:
- Size: 511 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Moi Node
> Docker Repo for NodeJS/Express projects hosted on Nginx
## Introduction
Moi Node is a NodeJs Docker Container created to be used for local development as well as for production use.
## How To Get Started
- Download moiboi-cli
```
npm i -g moiboi-cli
# or
yarn -g moiboi-cli
```
- Clone project into new folder
```
moiboi clone Moikapy/MoiNode
```
- Download Dependencies
```
npm i
# or
yarn
```
- Starting the Container for Development
```
npm run dev:docker
# or
yarn dev:docker
```
- Starting Container for Production
```
npm run start:docker
# or
yarn start:docker
```
- Start Dev Server
```
npm run dev
# or
yarn dev
```
- Start Prod Server
```
npm start
# or
yarn start
```