0.1.2 • Published 8 years ago

tz-tagger v0.1.2

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

Tag Trove

Parse tag specific data from actions, settings and events

Developing

When .yml tag files are edited, either have grunt watch running, or run grunt after changes.

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 tag-trove_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