├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── README.md ├── bb.edn ├── brew ├── garden-cask.template ├── garden-formula.template ├── update-cask.sh └── update-formula.sh ├── deps.edn ├── flake.lock ├── flake.nix ├── nix └── garden.nix ├── resources ├── .gitkeep ├── VERSION └── default-template-coords.edn ├── src └── nextjournal │ ├── edit_distance.clj │ ├── garden_cli.clj │ ├── start_command.clj │ └── template.clj └── standalone-build.sh /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/README.md -------------------------------------------------------------------------------- /bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/bb.edn -------------------------------------------------------------------------------- /brew/garden-cask.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/brew/garden-cask.template -------------------------------------------------------------------------------- /brew/garden-formula.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/brew/garden-formula.template -------------------------------------------------------------------------------- /brew/update-cask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/brew/update-cask.sh -------------------------------------------------------------------------------- /brew/update-formula.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/brew/update-formula.sh -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/deps.edn -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/flake.nix -------------------------------------------------------------------------------- /nix/garden.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/nix/garden.nix -------------------------------------------------------------------------------- /resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/VERSION: -------------------------------------------------------------------------------- 1 | 0.1.15 2 | -------------------------------------------------------------------------------- /resources/default-template-coords.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/resources/default-template-coords.edn -------------------------------------------------------------------------------- /src/nextjournal/edit_distance.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/src/nextjournal/edit_distance.clj -------------------------------------------------------------------------------- /src/nextjournal/garden_cli.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/src/nextjournal/garden_cli.clj -------------------------------------------------------------------------------- /src/nextjournal/start_command.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/src/nextjournal/start_command.clj -------------------------------------------------------------------------------- /src/nextjournal/template.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/src/nextjournal/template.clj -------------------------------------------------------------------------------- /standalone-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextjournal/garden-cli/HEAD/standalone-build.sh --------------------------------------------------------------------------------