Complete reference for all available Just commands in AgentOps development
justfile
with commands for setup, development, testing, and deployment.
just setup
.env.example
→ .env
, etc.)just install
bun install
)uv pip install -r requirements-dev.txt
)cd api && uv pip install -e .
)cd dashboard && bun install
)package.json
, pyproject.toml
, or requirements files changejust api-native
uv run python run.py
http://localhost:8000
just api-build
./scripts/just-api-build.sh
just api-run
just api-run
./scripts/just-api-run.sh
just api-test
api/
directorypytest
with all configured testsjust fe-run
dashboard/
directorybun install
)bun run dev
)http://localhost:3000
just fe-build
dashboard/
directorybun run build
)just fe-test
dashboard/
directorybun test
)just lint
bun run lint
from project rootjust format
ruff format
for Python filesjust test
just api-test
(API tests)just fe-test
(frontend tests)just up
docker-compose up -d
just down
docker-compose down
just logs
docker-compose logs -f
just clean
docker-compose down -v
(stops services and removes volumes)docker system prune -f
(removes unused Docker resources)justfile
with your own commands. Add to the bottom of the file:
just api-native
for API development (fastest)just fe-run
for frontend developmentjust lint && just test
before commitsjust up
for full environmentjust logs
for monitoringjust clean
when issues arisejust api-build && just fe-build
for production buildsjust test
for validationjust up
for final testing