Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 894 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 894 Bytes

Bottle Counter

Raspberry Pi + Johnny Five + Bottle Opener + tipsy devs = Bottle Counter

Development

In order to run bottle-counter in dev, it is easier to use Docker.

$ make build #will build a docker image, install node and deps using your local src.

$ make run #will run the latest build image. But will not mount your current repo.

$ make run-with-mount #will run the app with your src mounted.

One thing to remember, Docker ignores the node_modules folder. When running, the node_modules folder is inside the docker container and is never mounted from your local filesystem

test

#this will build a fresh docker-container and run jasmine tests
$ make test

deploy

WORK IN PROGRESS