Quick Start
Get Ordine running locally in minutes.
Prerequisites
Installation
sh
# Clone the repository
git clone https://github.com/forge-town/ordine.git
cd ordine
# Install dependencies
bun installDatabase Setup
Create local env files first:
sh
cp apps/app/.env.example apps/app/.env
cp apps/server/.env.example apps/server/.envSet the same DATABASE_URL in both files, then push the schema to your database:
sh
cd apps/app
bun run db:pushTIP
Make sure your PostgreSQL connection string is configured in the environment. See .env.example for the required variables.
Start Development
sh
# From the root directory
bun devThis starts all apps in parallel via Turborepo:
| App | URL | Description |
|---|---|---|
apps/app | http://localhost:9430 | Main web application |
apps/server | http://localhost:9433 | API server (Hono) |
Create Your First Pipeline
- Open the web app at
http://localhost:9430 - Navigate to Operations and create a new operation
- Navigate to Pipelines and create a new pipeline
- Add nodes to the pipeline canvas and connect them
- Click Run to execute
Contribution Policy
External contributions and public security intake are paused until beta.
CLI Usage
Ordine also provides a CLI for headless operation:
sh
cd apps/cli
bun run src/index.ts --helpWhat's Next?
- Learn about Core Concepts to understand the entity model
- Browse the Skills to see what AI agents can do with Ordine