Appearance
Running Environment
This page is the compatibility entry point for local and production runtime setup.
Start Here
- Local development setup: Development Local Setup
- Deployment and first install: Admin Installation
- Environment variables: Admin Configuration
- Production operations: Operations Runbook
Quick Local Commands
bash
# Start core dependencies
docker compose up -d postgres redis rustfs
# Backend (terminal 1)
cd backend
cargo run
# Frontend (terminal 2)
cd frontend
npm run devQuick Full-Stack Docker Command
bash
cp .env.example .env
docker compose up -d --build