diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -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. + |