2020-06-04 01:43:08 +02:00
|
|
|
.PHONY: tools lint test idea
|
2019-06-20 21:26:54 +02:00
|
|
|
|
|
|
|
lint:
|
2020-01-01 00:57:48 +01:00
|
|
|
pylint --rcfile=setup.cfg lbry
|
|
|
|
#mypy --ignore-missing-imports lbry
|
2019-06-21 17:26:58 +02:00
|
|
|
|
2019-06-26 08:54:54 +02:00
|
|
|
test:
|
2020-01-01 00:57:48 +01:00
|
|
|
tox
|
2019-06-26 08:54:54 +02:00
|
|
|
|
2019-06-21 17:26:58 +02:00
|
|
|
idea:
|
|
|
|
mkdir -p .idea
|
2020-01-01 00:57:48 +01:00
|
|
|
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-09-17 02:02:34 +02:00
|
|
|
lbrynet start node \
|
2020-09-02 23:50:22 +02:00
|
|
|
--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
|