mirror of
https://github.com/valitydev/swag-wallets.git
synced 2024-11-06 02:45:19 +00:00
0ba011b839
* 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
21 lines
248 B
Makefile
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 $@
|