https://github.com/lumeland/cli
CLI tool to run Lume locally without typing "deno task"
https://github.com/lumeland/cli
Last synced: about 2 months ago
JSON representation
CLI tool to run Lume locally without typing "deno task"
- Host: GitHub
- URL: https://github.com/lumeland/cli
- Owner: lumeland
- License: mit
- Created: 2023-01-06T16:10:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-21T16:07:14.000Z (4 months ago)
- Last Synced: 2025-04-21T14:21:44.531Z (3 months ago)
- Language: TypeScript
- Size: 13.7 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - lumeland/cli - CLI tool to run Lume locally without typing "deno task" (others)
README
# Lume CLI
A simple script to run Lume easily, without the need to type
`deno task lume [whatever]`.## Install
```sh
deno install --allow-run --allow-env --allow-read --allow-write=deno.json --name lume --force --reload https://deno.land/x/lume_cli/mod.ts
```## Usage
- `lume init` will run the command
`deno run -Ar https://deno.land/x/lume/init.ts` to initialize Lume in the
current directory.
- `lume upgrade-cli` will upgrade this script to the latest version.
- `lume local` will map Lume to a local folder. Useful for debugging and
development.
- Any other command is delegated to `deno task lume [...args]`. For example,
`lume -s` will run `deno task lume -s`.