swag-wallets/Makefile
Andrew Mayorov 0ba011b839
CAPI-262: Make up swagger repo w/ basic wallet api (#1)
* CAPI-262: Make up swagger repo w/ basic wallet api
* CAPI-262: Design identity levels and challenges
* CAPI-262: Allow to list wallets and identites
* CAPI-292: Switch to Redoc 2.x
* CAPI-262: Draft outputs and withdrawals
2018-06-12 19:50:45 +03:00

21 lines
248 B
Makefile

all: build
.PHONY: install
install: node_modules
.PHONY: build
build: install
npm run build
.PHONY: start
start: install
npm start
.PHONY: dev
dev:
wercker dev --publish 3000 --direct-mount
node_modules: package.json
npm install
touch $@