← Back to Hub

Quick Start

1. Download Aphelion

Download the CLI for Linux:

2. Generate Your First Dataset

# Clone an existing database structure
aphelion clone postgres://user:pass@localhost:5432/prod_db \
  --output ./test_db.json \
  --rows 1000

# Generate synthetic data
aphelion generate ./test_db.json --output ./output

CLI Commands

aphelion introspect

Inspect database schema and output as JSON.

aphelion introspect --url <connection-string>

aphelion clone

Extract schema and row counts.

aphelion clone <connection-string> --output schema.json

aphelion generate

Generate data from schema.

aphelion generate schema.json --output ./output