This repository is a testing and review sandbox for Dave Winer’s upstream project at https://github.com/scripting/feedland. The canonical source still lives in that repo and is edited through Frontier/OPML workflows, so use this fork to stage experiments, document findings, and validate fixes before filing upstream bug reports in https://github.com/scripting/feedlandDev/issues.
To install or run a real FeedLand server, follow the feedlandInstall instructions against the upstream repository. The docs, scripts, and notes in this fork mirror that environment so agents can reproduce issues and test candidate fixes without touching the canonical code.
If you want to explore just the database layer, continue to consume the feedlandDatabase NPM package. Its official sources remain in scripting/feedland/database; we keep a copy here strictly for reference and local testing.
-
scripts/setup.js— interactive helper that collects the answers needed forconfig.json(ports, SMTP, MySQL, optional S3/GitHub) and can runnpm installafterwards. Supply flags to run non-interactively, for example:node scripts/setup.js \ --non-interactive --port=1452 --domain=localhost:1452 --base-url=http://localhost:1452/ \ --mysql-host=localhost --mysql-user=feedland --mysql-password=secret --mysql-database=feedland \ --install-local-mysql --schema=../feedlandInstall/docs/setup.sql -
scripts/smoke.sh— curl-based smoke test for a running instance. ConfigureFEEDLAND_HOST(and optionallyFEEDLAND_EMAIL/FEEDLAND_CODE). -
scripts/bench-getriver.js— quick latency probe for/getriver; setFEEDLAND_HOSTandFEEDLAND_BENCH_SCREENNAME. -
scripts/run-tests.sh— provisioning harness that installs MySQL via Homebrew when needed, creates a timestamped temporary database (for example,feedland_test_20250308112233) in/tmp, runsnpm test, and drops the database afterwards. Override MySQL root credentials viaMYSQL_ROOT_USER/MYSQL_ROOT_PASS. Capture output with something like./scripts/run-tests.sh | tee /tmp/feedland-test.logif you want a log file.
All documentation under contributing/ and notes/ describes the upstream FeedLand service. When you discover bugs or improvements, capture the rationale here, exercise the scripts/tests below, and then file actionable reports in the upstream tracker at https://github.com/scripting/feedlandDev/issues. Avoid treating this fork as a production codebase; its purpose is collaborative review and experimentation.