aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMichael McVady <femtonaut@gmail.com>2023-01-02 06:43:11 -0600
committerMichael McVady <femtonaut@gmail.com>2023-01-02 06:43:11 -0600
commit98ebceffed8c6ae95d4de3f75680612348014871 (patch)
tree8369e5a706ec155e9b78d5a4f496118c00ac8fe0 /README.md
parent390c577790464a666cb1ba2bfaa00cdd7a0dfb89 (diff)
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/README.md b/README.md
index 3eb3667..b03693d 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,34 @@
An attempt to reimplement flog, using the [kore.io](https://kore.io) framework.
+# Notes
+
+To run locally comment out the `privsep worker` section in `conf/clog.conf`:
+
+```
+# privsep worker {
+# runas clog
+#
+# root /var/chroot/
+# }
+```
+
+Maybe disable `seccomp_tracing` in `conf/clog.conf` if running into problems:
+
+```
+seccomp_tracing no
+# seccomp_tracing yes
+```
+
+## Bootstrapping the database
+
+`psql` and load `db/db.sql`, `db/data.sql` for `db/data.sql`.
+
+
## TODO
* Determine how to handle `lib`/dependencies.
* Fix Dockerfile for standalone binary.
+* Connecting to postgres via docker DNS name.
+