commit e4f9ecde4dc663da5145caaeb0a58892e5374a17 Author: Bel LaPointe Date: Mon Jan 31 15:06:25 2022 -0700 initial leggo diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..78fd378 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +**/*.sw* diff --git a/spike/review/review.txt b/spike/review/review.txt new file mode 100644 index 0000000..8bd7c70 --- /dev/null +++ b/spike/review/review.txt @@ -0,0 +1,7 @@ +* last write wins, no clobber detect +* not made for multi-user +* editor blips around a bit +* doesnt import obsidian even close to correctly +* very pleasant with auto-save and always-editing +* [[ exists but doesnt work well and doesnt like being changed and un-renders on bad setup via click-away and back +* hedge* collab editor for bigger use cases but per-bucket and minio based and ez backup and edit a page to create an import page is all too good diff --git a/spike/review/run.sh b/spike/review/run.sh new file mode 100644 index 0000000..ddf459a --- /dev/null +++ b/spike/review/run.sh @@ -0,0 +1,24 @@ +#! /bin/bash + +killall -9 minio +d=$(mktemp -d) +cleanup() { + killall -9 minio + rm -rf $d +} +trap cleanup EXIT +MINIO_ACCESS_KEY=access_key MINIO_SECRET_KEY=secret_key minio server --address :9000 $d & +sleep 1 +mc mb sink/notea + +docker run --rm -it \ + --name notea \ + -p 3000:3000 \ + -e STORE_ACCESS_KEY=access_key \ + -e STORE_SECRET_KEY=secret_key \ + -e STORE_BUCKET=notea \ + -e STORE_END_POINT=http://$(ifconfig en0 | grep inet\ | awk '{print $2}'):9000 \ + -e STORE_FORCE_PATH_STYLE=true \ + -e PASSWORD=notea \ + -e COOKIE_SECURE=false \ + cinwell/notea diff --git a/spike/review/runbooks.zip b/spike/review/runbooks.zip new file mode 100644 index 0000000..b34b6aa Binary files /dev/null and b/spike/review/runbooks.zip differ