diff options
author | EuAndreh <eu@euandre.org> | 2020-10-11 04:42:47 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-10-11 04:42:47 -0300 |
commit | b854656fbbfd76dde7f38bfb6945981073a8c828 (patch) | |
tree | b3fb647b8b9afb41612337e972ce5c6cd8d501be /default.nix | |
parent | Fix entries filter in _include/feed.atom (diff) | |
download | euandre.org-b854656fbbfd76dde7f38bfb6945981073a8c828.tar.gz euandre.org-b854656fbbfd76dde7f38bfb6945981073a8c828.tar.xz |
Add note on starting a live server
Diffstat (limited to '')
-rw-r--r-- | default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/default.nix b/default.nix index 60e879b..f52c6a6 100644 --- a/default.nix +++ b/default.nix @@ -45,6 +45,10 @@ in rec { shell = pkgs.mkShell rec { name = "website-shell"; buildInputs = projectBuildInputs; + shellHook = '' + echo 'Start a live server with:' + echo ' jekyll serve --future --livereload' + ''; }; publishScript = pkgs.writeShellScriptBin "publish.sh" '' set -euo pipefail |