Skip to content

Installation

  • Go 1.21 or higher
  • PostgreSQL and/or SQLite database
Terminal window
go install github.com/kiridharan/seedcli@latest
Terminal window
# Clone the repository
git clone https://github.com/kiridharan/seedcli
cd seedcli
# Build the binary
go build -o seedcli .
# Move to PATH (optional)
sudo mv seedcli /usr/local/bin/

Download pre-built binaries from the releases page.

Terminal window
seedcli version

Expected output:

seedcli version 2.0.0
Build date: 2026-01-26
Go version: go1.21
OS/Arch: darwin/arm64
Supported adapters:
• postgres - PostgreSQL 12+
• sqlite - SQLite 3

Ensure PostgreSQL is installed and running:

Terminal window
# Check PostgreSQL status
pg_isready
# Create a test database
createdb seedcli_test

No additional setup required! SQLite databases are created automatically.

Continue to Quick Start to learn how to use seedcli.