aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md21
1 files changed, 17 insertions, 4 deletions
diff --git a/README.md b/README.md
index 5ff9959..28981b9 100644
--- a/README.md
+++ b/README.md
@@ -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
}
```