Skip to main content

DegenFeed Deployment ๐ŸŸข

Dockerโ€‹

git clone https://git.rugmunch.io/RugMunchMedia/degenfeed-web.git
cd degenfeed-web
cp .env.example .env # add network relay URLs + keys
docker compose up -d --build

Services: frontend (Next.js), backend API, Postgres, Redis, Meilisearch.

Reverse proxyโ€‹

Standard TLS-terminating nginx vhost, proxy to the frontend port (default :3000). Forward /api/* to the backend.

Production checklistโ€‹

  • Let's Encrypt cert installed and auto-renewing
  • Rate limiting on /api/* (recommended: 30 req/s burst 60)
  • Relay URLs pinned and monitored (adapter health surfaces in /healthz)
  • Meilisearch master key set (not the default)
  • Backups: nightly Postgres dump + weekly restore test

Repo: git.rugmunch.io/RugMunchMedia/degenfeed-web