justfile 324 B

123456789101112131415161718192021222324252627
  1. @_default:
  2. just --list
  3. @alex:
  4. npx alex README.md
  5. @build:
  6. just toc
  7. bundle exec jekyll build
  8. @down:
  9. just down
  10. @lint:
  11. -curlylint _layouts/
  12. -npx awesome-lint README.md
  13. @serve:
  14. # modd --file=modd.conf
  15. just up ""
  16. @up *ARGS="-d":
  17. docker-compose up {{ ARGS }}
  18. @toc:
  19. npx doctoc README.md