2020-06-03 19:43:08 -04:00
|
|
|
.PHONY: tools lint test idea
|
2019-06-20 15:26:54 -04:00
|
|
|
|
|
|
|
lint:
|
2019-12-31 18:57:48 -05:00
|
|
|
pylint --rcfile=setup.cfg lbry
|
|
|
|
#mypy --ignore-missing-imports lbry
|
2019-06-21 11:26:58 -04:00
|
|
|
|
2019-06-26 03:54:54 -03:00
|
|
|
test:
|
2019-12-31 18:57:48 -05:00
|
|
|
tox
|
2019-06-26 03:54:54 -03:00
|
|
|
|
2019-06-21 11:26:58 -04:00
|
|
|
idea:
|
|
|
|
mkdir -p .idea
|
2019-12-31 18:57:48 -05:00
|
|
|
cp -r scripts/idea/* .idea
|
2020-06-03 19:43:08 -04: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
|