Installation
Docker (recommended)
Orrery is published to the GitHub Container Registry. Pull the latest image:
docker pull ghcr.io/orrery-io/orrery:latestRun with a PostgreSQL connection string:
docker run -e DATABASE_URL=postgres://... -p 3000:3000 ghcr.io/orrery-io/orreryAll published versions are listed at ghcr.io/orrery-io/orrery .
From source
git clone https://github.com/orrery-io/orrery
cd orrery
cargo build --release
./target/release/orrery-serverConfiguration
| Environment Variable | Default | Description |
|---|---|---|
DATABASE_URL | required | PostgreSQL connection string |
PORT | 3000 | HTTP server port |
Note: Full configuration reference coming soon.
Last updated on