infra: Dockerfile + Railway config for the ingest sweep worker#12
Merged
Conversation
Adds the third deployable — the v2 sweep worker (@lockstep/ingest). It runs `serve` (loop sweep, 15-min default), has no HTTP server, and talks to core over LOCKSTEP_API_URL. railway.ingest.json builds packages/ingest/Dockerfile with an ON_FAILURE restart policy and no healthcheck. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds the third deployable — the v2 ingest sweep worker (
@lockstep/ingest) — so Slack/Jira/Notion ingestion can actually run. Today onlylockstep(core) andlockstep-webare deployed; the worker has never had deploy config.packages/ingest/Dockerfile— builds@lockstep/ingest, runsserve(loop sweep, 15-min default). No HTTP server; talks to core overLOCKSTEP_API_URL.railway.ingest.json—DOCKERFILEbuilder,ON_FAILURErestart, no healthcheck (worker, not a server).Deploy (after merge)
Create a new Railway service in the existing project, point it at this repo with Config file =
railway.ingest.json, and set env vars:ANTHROPIC_API_KEY,COMPOSIO_API_KEYLOCKSTEP_INGEST_TOKEN(must match the value on thelockstepcore service)LOCKSTEP_API_URL(public URL of thelockstepcore service)Also confirm
LOCKSTEP_INGEST_TOKENis set on thelockstepcore service (same value).Notes
@lockstep/coredep;@composio/core+@anthropic-ai/sdkare declared deps).npm run build -w @lockstep/ingestpasses. Docker image not built locally (no daemon in this session).🤖 Generated with Claude Code