diff options
author | Michael McVady <femtonaut@gmail.com> | 2024-01-27 00:21:58 -0600 |
---|---|---|
committer | Michael McVady <femtonaut@gmail.com> | 2024-01-27 00:21:58 -0600 |
commit | 817f6d49e8197d9659d7f9c6c6def7386bd06a54 (patch) | |
tree | 484e5587251f29ba0c8ca82fa8ace6917c833b2b /README.md | |
parent | 3ee97b5ca8b6b60fbcc77b621fdca3adf6b8ca25 (diff) |
Bump md4c dependecy
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 } ``` |