From 56de1d069d296dd05ef05fe10594aa088c0036c0 Mon Sep 17 00:00:00 2001 From: Thomas Koch Date: Sat, 23 Jul 2016 12:06:42 +0200 Subject: s/--local-bin-path/--local-bin/ output of `stack path --local-bin-path`: ``` Run from outside a project, using implicit global project config Using resolver: lts-6.8 from implicit global project's config file: /home/REDACTED/.stack/global-project/stack.yaml '--local-bin-path' will be removed in a future release. Please use '--local-bin' instead. ``` --- web/tutorials/01-installation.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/tutorials') diff --git a/web/tutorials/01-installation.markdown b/web/tutorials/01-installation.markdown index a8ffc00..7bbfc54 100644 --- a/web/tutorials/01-installation.markdown +++ b/web/tutorials/01-installation.markdown @@ -32,7 +32,7 @@ content and a generic configuration. If `hakyll-init` is not found, you should make sure your stack bin path (usually `$HOME/.local/bin`) is in your `$PATH`. You can check your stack local -bin path by running `stack path --local-bin-path`. +bin path by running `stack path --local-bin`. The file `site.hs` holds the configuration of your site, as an executable haskell program. We can compile and run it like this: -- cgit v1.2.3 From 24e6d6865ac682ad8c0e3737c7be7ac9ae6ea74e Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Sat, 23 Jul 2016 12:13:42 +0200 Subject: Change note for stack init --- web/tutorials/01-installation.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/tutorials') diff --git a/web/tutorials/01-installation.markdown b/web/tutorials/01-installation.markdown index a8ffc00..20688e8 100644 --- a/web/tutorials/01-installation.markdown +++ b/web/tutorials/01-installation.markdown @@ -38,7 +38,7 @@ The file `site.hs` holds the configuration of your site, as an executable haskell program. We can compile and run it like this: $ cd my-site - $ stack init # Optional, if you haven't used stack before + $ stack init # To create stack.yaml $ stack build $ stack exec site build -- cgit v1.2.3 From 70ee447ff10b2ca46a28f8a5c8a250c48d91e46e Mon Sep 17 00:00:00 2001 From: Thomas Koch Date: Sat, 23 Jul 2016 12:14:31 +0200 Subject: stack init is not really optional stack build complains if there is no stack.yaml so the previous comment is misleading for people who don't know what stack init does. --- web/tutorials/01-installation.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/tutorials') diff --git a/web/tutorials/01-installation.markdown b/web/tutorials/01-installation.markdown index 20688e8..a82ea1d 100644 --- a/web/tutorials/01-installation.markdown +++ b/web/tutorials/01-installation.markdown @@ -38,7 +38,7 @@ The file `site.hs` holds the configuration of your site, as an executable haskell program. We can compile and run it like this: $ cd my-site - $ stack init # To create stack.yaml + $ stack init # creates stack.yaml file based on my-site.cabal $ stack build $ stack exec site build -- cgit v1.2.3 From 94c94376cfc01df8f80562352f7470817bc75d3f Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Sat, 23 Jul 2016 12:53:00 +0200 Subject: Add tutorial on live reload --- web/tutorials/external-live-reload.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 web/tutorials/external-live-reload.md (limited to 'web/tutorials') diff --git a/web/tutorials/external-live-reload.md b/web/tutorials/external-live-reload.md new file mode 100644 index 0000000..38f1c96 --- /dev/null +++ b/web/tutorials/external-live-reload.md @@ -0,0 +1,6 @@ +--- +title: Live Reloading with Hakyll +author: Ben Kolera +url: 'http://benkolera.com/posts/2015-09-14-hakyll_livereload.html' +external: true +--- -- cgit v1.2.3