aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2025-04-07 10:52:11 -0700
committerPaul Oliver <contact@pauloliver.dev>2025-04-07 11:13:04 -0700
commitbff60ee4a8c87e5ae684785d05f02c5a75fe1695 (patch)
tree3c6b6612a0dd6f6b325348ad0ff65d367832faea
parente82648073a19f96d8344d0120a03184ae510e1f4 (diff)
Adds README file
-rw-r--r--README.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..b21da87
--- /dev/null
+++ b/README.md
@@ -0,0 +1,22 @@
+# Portfolio static site generator
+
+Uses [Hakyll](https://hackage.haskell.org/package/hakyll) to compile static
+HTML website from markdown source.
+
+Visit my portfolio site [here](https://pauloliver.dev).
+
+## Build
+```console
+$> stack build
+$> stack exec site -- build
+```
+
+## Run local server
+```console
+$> stack exec site -- watch
+```
+
+## Deploy
+```console
+$> rsync -rv _site/ ${dst}
+```