# clog An attempt to reimplement flog, using the [kore.io](https://kore.io) framework. ## Building ``` make fetch-dependencies docker compose up ``` ## Notes To run locally modify `conf/clog.conf`, comment out `root /var/chroot/` and uncomment the `skip chroot` section: ``` privsep worker { runas clog # root /var/chroot/ skip 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 * Have `tests.py` load and drop database. * only do HTTP stuff at the edge.