diff --git a/README.md b/README.md index e69de29..8616142 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,19 @@ +# grosbeak + +*Nee Jemison*. + +A single-file search engine, for small (100K-1M page) sites. + +## why? + +Two reasons. + +* I would like to build a repository of sites and papers that is searchable. I want to own the content and the index, and I want it to be easy to deploy/self-host. +* I want a search backend for LLM-based applications where I control the content. + +## requirements + +* An S3-compatible object store +* SQlite or Postgres + +The use-case is (essentially) single-user. diff --git a/shared/domain64/domain64.go b/shared/domain64/domain64.go new file mode 100644 index 0000000..85e07ed --- /dev/null +++ b/shared/domain64/domain64.go @@ -0,0 +1,5 @@ +package domain64 + +func ReturnTrue() bool { + return true +} diff --git a/shared/domain64/go.mod b/shared/domain64/go.mod new file mode 100644 index 0000000..76c7a38 --- /dev/null +++ b/shared/domain64/go.mod @@ -0,0 +1,3 @@ +module git.jadud.com/grosbeak/shared/domain64 + +go 1.23.2