0.1.0 • Published 8 years ago

tz-device-translator v0.1.0

Weekly downloads
1
License
UNLICENSED
Repository
-
Last release
8 years ago

Project name

Project description

Developing

Docker

Using docker-compose

  • docker-compose -f dev-compose.yml build
  • docker-compose -f dev-compose.yml up

Note: first time running with dev-compose.yml will require npm install from another shell attached to this container, e.g. docker exec -it app_app_1 bash npm install

Using plain docker

  • docker build -t ncd-backend ./
  • docker run --it -rm -v $(pwd):/var/www -p 3000:80 ncd-backend #runs on host port 3000

Custom local Node.js installation

Run npm start in the root of the repository

Deploying

Docker

  • docker build -t project ./
  • docker run -d -p 80:80 project

Kubernetes

TODO