lbry-sdk/Makefile

21 lines
455 B
Makefile
Raw Normal View History

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