Installation
How to install and update Lume
As Lume is run by Deno, read the Deno installation instructions if you don't have it installed yet.
Setup Lume
To setup Lume in your project folder, run the following command:
deno run -Ar https://deno.land/x/lume/init.ts
This command creates the following files:
_config.ts
or_config.js
: The Lume configuration file, where you can customize the site build.deno.json
: The Deno's configuration file. It includes the import map and some tasks to run Lume. You can also configure other features of Deno like TypeScript, formatter, linter, etc.
Here is an example of these two configuration files:
import lume from "lume/mod.ts";
const site = lume();
export default site;
{
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run --unstable -A -",
"build": "deno task lume",
"serve": "deno task lume -s"
},
"imports": {
"lume/": "https://deno.land/x/lume@v1.15.2/"
}
}
Now you can use Deno's tasks to run Lume in any environment. The command deno task lume
runs Lume and you can add additional arguments. For example deno task lume -s
runs Lume, open a local web server and start watching the changes.
The tasks build
(to build the website) and serve
(to build and start a local server) are just shortcuts to the main lume
task with additional arguments.
Run deno task lume -h
to see the instructions.
Setup Lume CLI on your computer
Lume uses Deno task to work, you need to type always deno task lume [...args]
, which is a bit verbose. To avoid typing deno task
all the time, you can install the Lume CLI script with:
deno install --allow-run --name lume --force --reload https://deno.land/x/lume_cli/mod.ts
This creates the lume
command:
lume init
will run the commanddeno run -Ar https://deno.land/x/lume/init.ts
to initialize Lume in the current directory.lume upgrade-cli
will upgrade the Lume CLI script to the latest version.- Any other command will be delegated to
deno task lume [...args]
. For example,lume -s
will rundeno task lume -s
.
Update Lume
The task deno task lume upgrade
(or lume upgrade
on Lume CLI) upgrades the Lume version used in your project folder to the latest version.
Use the argument --dev
to ugrade to the latest development version (the last commit in the Github repository). It's useful to test new features of Lume not yet released.
Vendoring
If you want to download all remote dependencies of Deno in a local folder, you can use the DENO_DIR
environment variable. For example, edit the lume
task to define this variable:
{
"importMap": "import_map.json",
"tasks": {
"lume": "DENO_DIR=_vendor echo \"import 'lume/cli.ts'\" | deno run --unstable -A -",
"build": "deno task lume",
"serve": "deno task lume -s"
}
}
Now, when you run any Lume task, all Deno dependencies will be downloaded into the _vendor
folder.
Visual Studio Code configuration
If you use Visual Studio Code, it's highly recommended to install the Deno extension.
WebStorm configuration
There's a Deno plugin for WebStorm that you can install if you use this IDE.