Add basic lume config

main
Benjamin Bädorf 2021-09-24 23:33:55 +02:00
parent 7e93874ff5
commit 9fe0cfe13f
No known key found for this signature in database
GPG Key ID: 4406E80E13CD656C
3 changed files with 16 additions and 5 deletions

5
_config.ts Normal file
View 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
View 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>

View File

@ -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"
'';
}