diff options
author | Michael McVady <femtonaut@gmail.com> | 2023-02-25 13:32:49 -0600 |
---|---|---|
committer | Michael McVady <femtonaut@gmail.com> | 2023-02-25 13:32:49 -0600 |
commit | 100bd1f5c9d1788e956660499e4cf96ef121c1c5 (patch) | |
tree | d7b361058a487329b40745b1b23346b117b9e4e7 /README.md | |
parent | 174907730bd2175bddc896cb6484918e2e5064f5 (diff) |
Hack in PATCH `/posts` endpoint
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -4,7 +4,7 @@ An attempt to reimplement flog, using the [kore.io](https://kore.io) framework. ## Running -``` +```sh make fetch-dependencies docker compose up ``` @@ -14,7 +14,7 @@ docker compose up To run locally modify `conf/clog.conf`, comment out `root /var/chroot/` and uncomment the `skip chroot` section: -``` +```conf privsep worker { runas clog @@ -26,7 +26,7 @@ privsep worker { Maybe disable `seccomp_tracing` in `conf/clog.conf` if running into problems: -``` +```conf seccomp_tracing no # seccomp_tracing yes ``` @@ -35,8 +35,9 @@ seccomp_tracing no `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. +1. Have `tests.py` load and drop database. +1. ~Only do HTTP stuff at the edge.~ +1. `PUT`/`PATCH`? posts. +1. pagination |