Skip to main content

Railway deployment utilities for Pulse applications

Project description

pulse-railway

Railway deployment utilities for Pulse applications.

pulse-railway uses one stable public router service plus one Railway service per deployment. The router keeps older deployments alive and forwards HTTP and websocket traffic to the selected deployment based on pulse_deployment.

For local CLI usage, prefer RAILWAY_API_TOKEN when you are using a user/account/workspace token. Reserve RAILWAY_TOKEN for Railway project tokens, especially in CI. If neither is set, pulse-railway falls back to the local Railway CLI login session from ~/.railway/config*.json.

Quick Start

set -a; source .env; set +a

uv run pulse-railway init \
  --app-file examples/railway/main.py

uv run pulse-railway deploy \
  --deployment-name prod \
  --app-file examples/railway/main.py \
  --web-root examples/railway/web \
  --dockerfile examples/Dockerfile \
  --context .

uv run pulse-railway deploy \
  --deployment-name prod \
  --app-file examples/railway/main.py \
  --web-root examples/railway/web \
  --dockerfile examples/Dockerfile \
  --context . \
  --image-repository ghcr.io/<org>/<name>

Use the commands like this:

  • pulse-railway init bootstraps the stable router, env, Redis, and janitor stack into an empty Railway project.
  • pulse-railway upgrade is currently a no-op placeholder.
  • pulse-railway deploy builds and rolls out a new backend service on top of an already-initialized stack. By default it uploads source and uses railway up to build on Railway. Passing an image repository switches deploy to the local docker buildx build --push path.

init and deploy read the stable router, Redis, and janitor service names from RailwayPlugin on the target app. By default those are pulse-router, pulse-redis, and pulse-janitor without extra prefixing. The baseline also includes a stable env service named pulse-env that acts as the canonical source for user-managed deployment variables. Backend deployment services also default to no prefix, so their Railway service names match the generated deployment id unless you pass --service-prefix.

pulse-railway init is template-first and fresh-only. On an empty target it deploys the published pulse-baseline template so the router, janitor, and Redis land on the Railway canvas with a stable layout, creates the stable env service in the template group, then writes runtime images, variables, domains, cron, and healthchecks. Router and janitor services use the official GHCR images for the installed pulse-railway version unless you pass explicit image overrides: ghcr.io/erwinkn/pulse-railway-router:<version> and ghcr.io/erwinkn/pulse-railway-janitor:<version>. When you pass --redis-url, init removes the managed Redis service plus any template-created Redis references, then rewrites the baseline to use the external URL. If any baseline service already exists, including partial leftovers from a failed run, delete those services and rerun init. A future pulse-railway update command will handle explicit stack reconciliation.

pulse-railway init and pulse-railway deploy target projects and environments by name. Use --project <name> or RailwayPlugin(project="..."); if project is omitted, the token must be a Railway project token so the project can be inferred. Use --environment <name> or RailwayPlugin(environment="..."); if environment is omitted with a project token, the token's environment is used. With a user/account token, omitted environment defaults to production. Project and environment IDs are resolved internally before Railway API calls.

You can also set deployment_name on RailwayPlugin to provide the default deploy name from app config. Precedence is: --deployment-name, then RailwayPlugin(deployment_name=...), then prod.

You can also set image_repository on RailwayPlugin to provide the default backend image registry from app config. Precedence is: --image-repository, then RailwayPlugin(image_repository=...). If none is set, deploy uses source mode.

If --redis-url is omitted, pulse-railway init creates the stable Redis service configured by RailwayPlugin in the Railway project.

pulse-railway deploy is now strict. It does not create or repair the stable baseline stack. If the router, env, Redis, or janitor baseline is missing or outdated, run pulse-railway init first.

User-managed app variables should live on the stable env service. Each new backend deployment references every non-Pulse-managed variable from pulse-env, so users can sync secrets into that service however they want: Railway UI, Shared Variables, Doppler, or another workflow.

By default, pulse-railway deploy uses source mode. Image deployments require --image-repository ghcr.io/<org>/<name> or RailwayPlugin(image_repository="ghcr.io/<org>/<name>").

Model

  • Stable Railway router service
  • Stable Railway env service for user-managed deployment variables
  • One Railway backend service per deployment
  • Stable Railway Redis service unless you pass --redis-url
  • Optional Railway cron job for janitor cleanup
  • Active deployment stored in PULSE_ACTIVE_DEPLOYMENT
  • Explicit affinity via pulse_deployment query param or x-pulse-deployment header
  • Websockets proxied through the router to the selected backend service
  • Draining and cleanup state stored in Redis
  • Before janitor deletion, the backend broadcasts Pulse reload to connected clients
  • Websocket reconnects with stale affinity fall back to the active deployment so the app can trigger a full-page reload

Runtime

Backend services must set PULSE_DEPLOYMENT_ID. RailwayPlugin injects the affinity query into Pulse prerender and websocket directives and exposes /_pulse/meta for verification.

If your app opts into pulse_railway.RailwaySessionStore():

  • deploy injects PULSE_RAILWAY_REDIS_URL into the backend app
  • the app session store uses that Redis for server-backed sessions

When the baseline stack has Redis configured:

  • deploy marks the new deployment active
  • previous active deployments become draining
  • the router records HTTP activity and websocket leases in Redis
  • the janitor signals connected browsers to reload before deleting a drained deployment
  • the janitor cron job deletes drained deployments after they are idle

The janitor job runs as a Railway cron service, not a permanent always-on process. Use a cadence of 5 minutes or slower; Railway does not run cron jobs more frequently than that.

pulse-railway janitor run is for the deployed janitor service only. It probes *.railway.internal backends and now fails fast outside Railway.

If you need to trigger cleanup manually, run the command from inside the deployed janitor service:

pulse-railway janitor run

To remove a deployment by the original deployment name prefix, use:

pulse-railway remove \
  --service pulse-router \
  --deployment-name prod \
  --project <project-name> \
  --environment production \
  --token <project-token>

If the name matches multiple generated deployment ids, the command fails and prints the matching ids so you can retry with pulse-railway delete --deployment-id ....

Notes

  • Backend services should run with 1 replica. Railway does not provide replica-level sticky routing, so deployment affinity alone is only safe with a single backend replica when sessions are stored in memory.
  • The router can run with multiple replicas because routing state lives in the request query/header plus the active deployment variable.
  • Healthchecks remain for crash recovery only. Deployment cleanup is handled by the janitor cron job, not by failing healthchecks on drained services.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pulse_railway-0.1.4.tar.gz (40.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pulse_railway-0.1.4-py3-none-any.whl (53.7 kB view details)

Uploaded Python 3

File details

Details for the file pulse_railway-0.1.4.tar.gz.

File metadata

  • Download URL: pulse_railway-0.1.4.tar.gz
  • Upload date:
  • Size: 40.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pulse_railway-0.1.4.tar.gz
Algorithm Hash digest
SHA256 89821bf59e32c9d6f5e066aefe0809a910c61f9fda1c29022ec9c124fa1f611b
MD5 d805c3fa20ac4d5280011007a8358a71
BLAKE2b-256 5b3f276d9bc12083c93c3a3f26dc8bec5b118af3c3e15acc068cbb0d7764a355

See more details on using hashes here.

File details

Details for the file pulse_railway-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: pulse_railway-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 53.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pulse_railway-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 251cd9e2ebe515de06752405a511a3daada54d815a051cd19c535c02d0992928
MD5 fdf54ef88f8ae1188676742c57779ada
BLAKE2b-256 9d9a7434d0bb1b5e52845cc6eced2a599ab40e94a414eee1d2f0e7701b83720b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page