ShipSec Studio uses just as its command runner. RunDocumentation Index
Fetch the complete documentation index at: https://docs.shipsec.ai/llms.txt
Use this file to discover all available pages before exploring further.
just or just help to see all available commands.
Getting Started
Initialize Project
- Installs dependencies with Bun
- Creates environment files from examples (
backend/.env,worker/.env,frontend/.env)
Development Commands
Start Development Environment
- Checks for environment files
- Starts Docker infrastructure (Postgres, Temporal, MinIO, Loki)
- Waits for services to be ready
- Runs database migrations
- Starts backend, worker, and frontend via PM2
| Service | URL |
|---|---|
| Frontend | http://localhost/ |
| Backend API | http://localhost/api/ |
| Analytics | http://localhost/analytics/ |
| Temporal UI | http://localhost:8081 |
Stop Development
View Logs
Check Status
Production Commands
Start Production
| Service | URL |
|---|---|
| Frontend | http://localhost/ |
| Backend API | http://localhost/api/ |
| Analytics | http://localhost/analytics/ |
| Temporal UI | http://localhost:8081 |
Build and Start
Stop Production
View Production Logs
Check Production Status
Clean Production
This deletes all data.
Infrastructure Commands
Start Infrastructure
- PostgreSQL
- Temporal
- MinIO
- Redis
- Loki
Stop Infrastructure
View Infrastructure Logs
Clean Infrastructure
This deletes all data.
Utility Commands
Show All Status
- PM2 services
- Infrastructure containers
- Production containers
Reset Database
Build Images Only
Quick Reference
| Command | Description |
|---|---|
just init | Initialize environment |
just dev | Start development |
just dev stop | Stop development |
just dev logs | View dev logs |
just dev status | Check dev status |
just prod | Start production |
just prod build | Build and start production |
just prod stop | Stop production |
just prod logs | View production logs |
just prod clean | Clean production data |
just infra up | Start infrastructure |
just infra down | Stop infrastructure |
just infra logs | View infrastructure logs |
just infra clean | Clean infrastructure data |
just status | Show all status |
just db-reset | Reset database |
just build | Build images |
just help | Show help |
Environment Files
Thejust init command creates these environment files:
| File | Purpose |
|---|---|
backend/.env | Backend API configuration |
worker/.env | Worker configuration |
frontend/.env | Frontend configuration |
.env.example template.