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:
|
|
|
|
dropdb lbry2
|
|
|
|
createdb lbry2
|
|
|
|
lbrynet start --full-node \
|
|
|
|
--db-url=postgresql:///lbry2 --processes=-1 --console=advanced \
|
|
|
|
--lbrycrd-dir=${HOME}/.lbrycrd --data-dir=/tmp/tmp-lbrynet
|