website/justfile

58 lines
1001 B
Makefile
Raw Normal View History

2022-06-09 22:20:40 +01:00
set dotenv-load
DEV_COMPOSE := justfile_directory() + "/docker/dev/docker-compose.yml"
2022-06-09 22:20:40 +01:00
# Recipes
@default:
just --list
build:
docker-compose -f {{ DEV_COMPOSE }} pull
docker-compose -f {{ DEV_COMPOSE }} build
docker-compose -f {{ DEV_COMPOSE }} run --rm --no-deps web npm ci
@compose +ARGS:
docker-compose -f {{ DEV_COMPOSE }} {{ ARGS }}
2022-06-09 22:20:40 +01:00
@start:
honcho start
@manage +ARGS:
./manage.py {{ ARGS }}
2022-06-12 15:17:28 +01:00
@pip +ARGS:
pip {{ ARGS }}
2022-06-10 16:22:20 +01:00
test *ARGS:
TEST=true ./manage.py test {{ ARGS }}
2022-06-12 15:17:28 +01:00
2022-08-17 19:09:07 +01:00
coverage:
2022-10-24 20:41:30 +01:00
TEST=true coverage run ./manage.py test --keepdb
2022-08-17 19:09:07 +01:00
coverage report
coverage html
2022-06-12 15:17:28 +01:00
format:
black .
isort .
2022-10-05 14:17:00 +01:00
djlint website/ --reformat
2022-06-12 19:35:06 +01:00
npm run format
2022-06-12 15:17:28 +01:00
2022-06-12 19:35:06 +01:00
lint: lint_python lint_node
lint_python:
black --check .
isort --check .
flake8
mypy . --show-error-codes
2022-10-05 14:17:00 +01:00
djlint website/ --lint --check
2022-06-12 19:35:06 +01:00
@lint_node:
npm run lint
2022-07-29 09:02:09 +01:00
@sh:
docker-compose -f {{ DEV_COMPOSE }} up -d
2022-07-29 09:02:09 +01:00
docker-compose -f {{ DEV_COMPOSE }} exec web bash
2022-09-14 09:08:04 +01:00
@down:
docker-compose -f {{ DEV_COMPOSE }} down