diff options
author | Paul Oliver <contact@pauloliver.dev> | 2025-04-07 10:52:11 -0700 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2025-04-07 11:13:04 -0700 |
commit | bff60ee4a8c87e5ae684785d05f02c5a75fe1695 (patch) | |
tree | 3c6b6612a0dd6f6b325348ad0ff65d367832faea | |
parent | e82648073a19f96d8344d0120a03184ae510e1f4 (diff) |
Adds README file
-rw-r--r-- | README.md | 22 |
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} +``` |