Add basic lume config
This commit is contained in:
parent
7e93874ff5
commit
9fe0cfe13f
5
_config.ts
Normal file
5
_config.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
import lume from "https:/deno.land/x/lume/mod.ts";
|
||||
|
||||
const site = lume();
|
||||
|
||||
export default site;
|
3
_site/README/index.html
Normal file
3
_site/README/index.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
<p>Install Lume:</p>
|
||||
<p>https://lumeland.github.io/getting-started/installation/</p>
|
||||
<p>deno run -A https://deno.land/x/lume/install.ts</p>
|
13
shell.nix
13
shell.nix
|
@ -1,8 +1,11 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
|
||||
pkgs.mkShell {
|
||||
with (import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixpkgs-unstable.tar.gz) {});
|
||||
mkShell {
|
||||
buildInputs = [
|
||||
pkgs.nodejs
|
||||
pkgs.deno
|
||||
nodejs
|
||||
deno
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
export PATH="$PATH:/home/ben/.deno/bin"
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue