website/justfile

43 lines
651 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
@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:
./manage.py test {{ ARGS }}
2022-06-12 15:17:28 +01:00
format:
black website
isort website
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:
2022-06-12 15:17:28 +01:00
black --check website
isort --check website
flake8 website
2022-07-10 18:39:06 +01:00
mypy website --show-error-codes
2022-06-12 19:35:06 +01:00
@lint_node:
npm run lint