2021-11-17 16:53:32 +00:00
|
|
|
.PHONY: test
|
|
|
|
|
2023-04-03 10:23:01 +00:00
|
|
|
all: format check
|
2020-09-03 01:06:53 +00:00
|
|
|
|
2022-07-16 12:10:43 +00:00
|
|
|
format: prettier isort black
|
2020-09-03 01:06:53 +00:00
|
|
|
|
2023-02-07 07:55:52 +00:00
|
|
|
check: mypy pyright pylint flake8 checkisort checkblack checkprettier
|
2020-08-31 02:19:43 +00:00
|
|
|
|
2023-02-20 10:40:10 +00:00
|
|
|
prettier:
|
|
|
|
poetry run ./node_modules/.bin/prettier --write lnbits
|
2020-08-29 17:10:26 +00:00
|
|
|
|
2023-01-23 09:29:17 +00:00
|
|
|
pyright:
|
2023-02-02 12:56:10 +00:00
|
|
|
poetry run ./node_modules/.bin/pyright
|
2023-01-23 09:29:17 +00:00
|
|
|
|
2022-08-03 12:10:32 +00:00
|
|
|
black:
|
|
|
|
poetry run black .
|
2020-09-03 01:06:53 +00:00
|
|
|
|
2023-01-20 10:43:16 +00:00
|
|
|
flake8:
|
|
|
|
poetry run flake8
|
|
|
|
|
2022-08-03 12:10:32 +00:00
|
|
|
mypy:
|
|
|
|
poetry run mypy
|
2020-08-31 02:19:43 +00:00
|
|
|
|
2022-08-03 12:10:32 +00:00
|
|
|
isort:
|
|
|
|
poetry run isort .
|
2022-07-16 12:10:43 +00:00
|
|
|
|
2023-01-20 10:43:16 +00:00
|
|
|
pylint:
|
|
|
|
poetry run pylint *.py lnbits/ tools/ tests/
|
|
|
|
|
2023-02-20 10:40:10 +00:00
|
|
|
checkprettier:
|
|
|
|
poetry run ./node_modules/.bin/prettier --check lnbits
|
2020-09-03 01:06:53 +00:00
|
|
|
|
2022-08-03 12:10:32 +00:00
|
|
|
checkblack:
|
|
|
|
poetry run black --check .
|
2020-09-14 00:31:05 +00:00
|
|
|
|
2022-08-03 12:10:32 +00:00
|
|
|
checkisort:
|
|
|
|
poetry run isort --check-only .
|
2021-11-17 16:53:32 +00:00
|
|
|
|
|
|
|
test:
|
2022-07-16 12:10:43 +00:00
|
|
|
LNBITS_BACKEND_WALLET_CLASS="FakeWallet" \
|
2022-06-26 22:11:46 +00:00
|
|
|
FAKE_WALLET_SECRET="ToTheMoon1" \
|
2021-11-17 16:53:32 +00:00
|
|
|
LNBITS_DATA_FOLDER="./tests/data" \
|
|
|
|
PYTHONUNBUFFERED=1 \
|
2022-08-17 13:57:56 +00:00
|
|
|
DEBUG=true \
|
2022-08-03 12:10:32 +00:00
|
|
|
poetry run pytest
|
2022-07-16 12:10:43 +00:00
|
|
|
|
|
|
|
test-real-wallet:
|
|
|
|
LNBITS_DATA_FOLDER="./tests/data" \
|
|
|
|
PYTHONUNBUFFERED=1 \
|
2022-08-17 13:57:56 +00:00
|
|
|
DEBUG=true \
|
2022-08-03 12:10:32 +00:00
|
|
|
poetry run pytest
|
2022-06-26 22:11:46 +00:00
|
|
|
|
2022-08-17 13:42:01 +00:00
|
|
|
test-migration:
|
|
|
|
rm -rf ./migration-data
|
|
|
|
mkdir -p ./migration-data
|
|
|
|
unzip tests/data/mock_data.zip -d ./migration-data
|
|
|
|
HOST=0.0.0.0 \
|
|
|
|
PORT=5002 \
|
|
|
|
LNBITS_DATA_FOLDER="./migration-data" \
|
|
|
|
timeout 5s poetry run lnbits --host 0.0.0.0 --port 5002 || code=$?; if [[ $code -ne 124 && $code -ne 0 ]]; then exit $code; fi
|
|
|
|
HOST=0.0.0.0 \
|
|
|
|
PORT=5002 \
|
|
|
|
LNBITS_DATABASE_URL="postgres://lnbits:lnbits@localhost:5432/migration" \
|
|
|
|
timeout 5s poetry run lnbits --host 0.0.0.0 --port 5002 || code=$?; if [[ $code -ne 124 && $code -ne 0 ]]; then exit $code; fi
|
|
|
|
LNBITS_DATA_FOLDER="./migration-data" \
|
|
|
|
LNBITS_DATABASE_URL="postgres://lnbits:lnbits@localhost:5432/migration" \
|
|
|
|
poetry run python tools/conv.py
|
|
|
|
|
|
|
|
migration:
|
|
|
|
poetry run python tools/conv.py
|
|
|
|
|
2022-06-26 22:11:46 +00:00
|
|
|
bak:
|
|
|
|
# LNBITS_DATABASE_URL=postgres://postgres:postgres@0.0.0.0:5432/postgres
|
2023-03-31 10:46:24 +00:00
|
|
|
#
|
|
|
|
|
2023-04-21 12:51:46 +00:00
|
|
|
sass:
|
|
|
|
npm run sass
|
|
|
|
|
|
|
|
bundle:
|
2023-03-31 10:46:24 +00:00
|
|
|
npm install
|
2023-04-21 12:51:46 +00:00
|
|
|
npm run sass
|
|
|
|
npm run vendor_copy
|
|
|
|
npm run vendor_json
|
|
|
|
poetry run ./node_modules/.bin/prettier -w ./lnbits/static/vendor.json
|
|
|
|
npm run vendor_bundle_css
|
|
|
|
npm run vendor_minify_css
|
|
|
|
npm run vendor_bundle_js
|
|
|
|
npm run vendor_minify_js
|
2023-04-25 08:25:09 +00:00
|
|
|
# increment serviceworker version
|
|
|
|
sed -i -e "s/CACHE_VERSION =.*/CACHE_VERSION = $$(awk '/CACHE_VERSION =/ { print 1+$$4 }' lnbits/core/static/js/service-worker.js)/" \
|
|
|
|
lnbits/core/static/js/service-worker.js
|
2023-05-09 08:41:40 +00:00
|
|
|
|
|
|
|
install-pre-commit-hook:
|
|
|
|
@echo "Installing pre-commit hook to git"
|
|
|
|
@echo "Uninstall the hook with poetry run pre-commit uninstall"
|
|
|
|
poetry run pre-commit install
|
|
|
|
|
|
|
|
pre-commit:
|
|
|
|
poetry run pre-commit run --all-files
|