Fork of github.com/did-method-plc/did-method-plc
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove makefile

dholms 88a1416a 0e8370fc

-51
-51
Makefile
··· 1 - 2 - SHELL = /bin/bash 3 - .SHELLFLAGS = -o pipefail -c 4 - 5 - .PHONY: help 6 - help: ## Print info about all commands 7 - @echo "Helper Commands:" 8 - @echo 9 - @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[01;32m%-20s\033[0m %s\n", $$1, $$2}' 10 - @echo 11 - @echo "NOTE: dependencies between commands are not automatic. Eg, you must run 'deps' and 'build' first, and after any changes" 12 - 13 - .PHONY: build 14 - build: ## Compile all modules 15 - yarn build 16 - 17 - .PHONY: test 18 - test: ## Run all tests 19 - yarn test 20 - 21 - .PHONY: run-dev-env 22 - run-dev-env: ## Run a "development environment" shell 23 - cd packages/dev-env; yarn run start 24 - 25 - .PHONY: run-pds 26 - run-pds: ## Run PDS locally 27 - if [ ! -f "packages/pds/.dev.env" ]; then cp packages/pds/example.dev.env packages/pds/.dev.env; fi 28 - cd packages/pds; ENV=dev yarn run start | yarn exec pino-pretty 29 - 30 - .PHONY: run-plc 31 - run-plc: ## Run DID:PLC server locally 32 - if [ ! -f "packages/plc/.dev.env" ]; then cp packages/plc/example.dev.env packages/plc/.dev.env; fi 33 - cd packages/plc; ENV=dev yarn run start | yarn exec pino-pretty 34 - 35 - .PHONY: lint 36 - lint: ## Run style checks and verify syntax 37 - yarn verify 38 - 39 - .PHONY: fmt 40 - fmt: ## Run syntax re-formatting 41 - yarn prettier 42 - 43 - .PHONY: deps 44 - deps: ## Installs dependent libs using 'yarn install' 45 - yarn install --frozen-lockfile 46 - 47 - .PHONY: nvm-setup 48 - nvm-setup: ## Use NVM to install and activate node+yarn 49 - nvm install 18 50 - nvm use 18 51 - npm install --global yarn