# clog An attempt to implement a blog in C, using the [kore.io](https://kore.io) framework. ## Running ```sh 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: ```conf privsep worker { runas clog # root /var/chroot/ skip chroot } ``` Maybe disable `seccomp_tracing` in `conf/clog.conf` if running into problems: ```conf seccomp_tracing no # seccomp_tracing yes ``` ## Bootstrapping the database Use `psql` and load `db/db.sql` for models, `db/data.sql` for some example data. ## TODO 1. ~Only do HTTP stuff at the edge.~ 2. ~`PUT`~/`PATCH`? entries. 3. pagination of index ? 4. ~HTML form for edits~ 5. ~Make