this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

README.md

lexidex: experimental atproto Lexicon index#

⚠️ This is a fun little proof-of-concept ⚠️

Run It#

The recommended way to run lexidex is behind a caddy HTTPS server which does automatic on-demand SSL certificate registration (using Let's Encrypt).

Build and run lexidex:

go build ./cmd/lexidex

# will listen on :8400 by default
./lexidex serve

Create a Caddyfile:

{
  on_demand_tls {
    interval 1h
    burst 8
  }
}

:443 {
  reverse_proxy localhost:8400
  tls YOUREMAIL@example.com {
    on_demand
  }
}

Run caddy:

caddy run