awesome-django/justfile

34 lines
490 B
Makefile
Raw Normal View History

2021-04-09 02:58:10 +00:00
@_default:
just --list
@alex:
2023-11-17 02:13:07 +00:00
bunx alex README.md
2021-04-09 02:58:10 +00:00
@bootstrap:
pip install --upgrade pip pip-tools
pip install --upgrade --requirement requirements.in
2021-04-09 02:58:10 +00:00
@build:
just toc
2021-04-09 03:06:32 +00:00
bundle exec jekyll build
2021-04-09 02:58:10 +00:00
2022-09-11 00:47:22 +00:00
@down:
docker-compose down
2022-09-11 00:47:22 +00:00
2021-04-09 02:58:10 +00:00
@lint:
-curlylint _layouts/
2023-11-17 02:13:07 +00:00
-bunx awesome-lint README.md
2021-04-09 03:16:46 +00:00
2021-04-09 03:06:32 +00:00
@serve:
2022-09-11 00:47:22 +00:00
# modd --file=modd.conf
just up ""
2023-11-17 03:21:41 +00:00
@start *ARGS="--detach":
just up {{ ARGS }}
@up *ARGS:
2022-09-11 00:47:22 +00:00
docker-compose up {{ ARGS }}
2021-04-09 02:58:10 +00:00
@toc:
2023-11-17 02:13:07 +00:00
bunx doctoc README.md