lbry-sdk/Makefile

21 lines
448 B
Makefile
Raw Permalink Normal View History

2020-06-03 19:43:08 -04:00
.PHONY: tools lint test idea
2019-06-20 15:26:54 -04:00
lint:
pylint --rcfile=setup.cfg lbry
#mypy --ignore-missing-imports lbry
2019-06-26 03:54:54 -03:00
test:
tox
2019-06-26 03:54:54 -03:00
idea:
mkdir -p .idea
cp -r scripts/idea/* .idea
2020-06-03 19:43:08 -04:00
start:
2020-09-02 14:33:36 -03:00
dropdb lbry --if-exists
2020-06-22 11:44:27 -04:00
createdb lbry
2020-09-16 20:02:34 -04:00
lbrynet start node \
--db-url=postgresql:///lbry --workers=0 --console=advanced --no-spv-address-filters \
2020-07-30 14:51:04 -04:00
--lbrycrd-rpc-user=lbry --lbrycrd-rpc-pass=somethingelse \
2020-06-03 19:43:08 -04:00
--lbrycrd-dir=${HOME}/.lbrycrd --data-dir=/tmp/tmp-lbrynet