diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 21 |
1 files changed, 17 insertions, 4 deletions
@@ -5,10 +5,23 @@ An attempt to implement a blog in C, using the [kore.io](https://kore.io) framew ## Running ```sh -make fetch-dependencies docker compose up ``` +## Build and run locally + +Install kore & then: + +```sh +make +``` + +Make sure a database is up & then + +```sh +./run-local.sh +``` + ## Notes To run locally modify `conf/clog.conf`, comment out `root /var/chroot/` and uncomment @@ -16,11 +29,11 @@ the `skip chroot` section: ```conf privsep worker { - runas clog + runas clog - # root /var/chroot/ + # root /var/chroot/ - skip chroot + skip chroot } ``` |