awesome-django/justfile

34 lines
481 B
Makefile
Raw Normal View History

2021-04-08 21:58:10 -05:00
@_default:
just --list
@alex:
npx alex README.md
@bootstrap:
pip install --upgrade pip pip-tools
pip install --upgrade --requirement requirements.in
2021-04-08 21:58:10 -05:00
@build:
just toc
2021-04-08 22:06:32 -05:00
bundle exec jekyll build
2021-04-08 21:58:10 -05:00
2022-09-10 19:47:22 -05:00
@down:
docker-compose down
2022-09-10 19:47:22 -05:00
2021-04-08 21:58:10 -05:00
@lint:
-curlylint _layouts/
-npx awesome-lint README.md
2021-04-08 22:16:46 -05:00
2021-04-08 22:06:32 -05:00
@serve:
2022-09-10 19:47:22 -05:00
# modd --file=modd.conf
just up ""
@start *ARGS="-d":
just up {{ ARGS }}
@up *ARGS:
2022-09-10 19:47:22 -05:00
docker-compose up {{ ARGS }}
2021-04-08 21:58:10 -05:00
@toc:
npx doctoc README.md