Source files for
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nek0 639a6d21d5
rewrite nix files
1 year ago
site brighten the background a little 3 years ago
src new style 3 years ago
templates new style 3 years ago
.gitignore mark folders as such 3 years ago
ChangeLog.md init 5 years ago
README.md enable foreign access 4 years ago
Setup.hs init 5 years ago
chaoszone.cabal test 4 years ago
newpost.sh new post and adjustments to script 5 years ago
shell.nix rewrite nix files 1 year ago

README.md

chaoszone.cz

The source files for the https://chaoszone.cz website.

Dependencies

This site is built using Hakyll. To be able to build and run this, you need to install the following:

  • ghc
  • cabal-install
  • alex
  • happy
  • zlib1g-dev

New post

To write new posts just invoke newpost.sh. This will guide you through the process.

After you have written and saved the new post, add the post (you can find it in site/posts/) to the repo, commit and push it.

Build and deploy

NixOS

After cloning the repo and changing into the repo directory, you can invoke

nix-shell shell.nix

to build a shell with all dependencies in it. After that, you invoke

cabal new-run -- chaoszone build && cabal new-run -- chaoszone deploy

to build the static sites and eploy them in one step.

Other *nix

After cloning the repo, you change into the directory and invoke

cabal new-update

to initialize your cabal package repository list. After that you can run

cabal new-run -- chaoszone build && cabal new-run -- chaoszone deploy

to build the static sites and eploy them in one step.

Altering building process

For altering the building process, you may edit the src/Main.hs file. To actually see your results, contact me at nek0@nek0.eu so I can rebuild the executable for the static site generator.