patagia-control/justfile

84 lines
1.9 KiB
Makefile
Raw Normal View History

2024-10-20 19:29:28 +02:00
set shell := ["/usr/bin/env", "bash", "-euo", "pipefail", "-c"]
[private]
default:
@just --choose
2024-11-25 20:37:41 +01:00
# Run controller
run-controller $RUST_LOG="debug,h2=info,hyper_util=info,tower=info":
cargo run --package patagia-controller -- --log-stderr
2024-11-23 19:57:17 +01:00
2024-11-25 20:37:41 +01:00
# Run controller local development
dev-controller:
watchexec --clear --restart --stop-signal INT --debounce 300ms -- just run-controller
2024-11-23 19:57:17 +01:00
2024-12-14 22:47:40 +01:00
# Run agent
run-agent $RUST_LOG="debug,h2=info,hyper_util=info,tower=info":
cargo run --package patagia-agent
# Run agent local development
dev-agent:
watchexec --clear --restart --stop-signal INT --debounce 300ms -- just run-agent
2024-10-20 19:29:28 +02:00
# Lint all source code
lint:
2024-11-23 19:57:17 +01:00
cargo clippy
2024-10-20 19:29:28 +02:00
# Format all source code
fmt:
2024-11-23 19:57:17 +01:00
nix fmt
2024-10-20 19:29:28 +02:00
# Update all dependencies
2024-11-23 19:57:17 +01:00
update: update-nix update-rust-deps
# Update rust dependencies
update-rust-deps:
cargo upgrade --recursive
cargo update --recursive
2024-10-20 19:29:28 +02:00
# Update nix flake packages
2024-11-23 19:57:17 +01:00
update-nix:
2024-10-20 19:29:28 +02:00
nix flake update
2024-11-23 19:57:17 +01:00
# Find unused dependencies with cargo machete
machete:
cargo machete
2024-12-11 21:12:24 +01:00
# Generate OpenAPI spec
open-api:
cargo xtask open-api
# Run all tests
2025-01-06 20:40:02 +01:00
check: check-nix
2024-12-11 21:12:24 +01:00
# check-nix
check-nix:
nix flake check
2025-01-06 20:40:02 +01:00
# Run PostgreSQL for development and testing
dev-postgres:
mkdir -p "$XDG_RUNTIME_DIR/patagia-postgres"
podman volume exists patagia-postgres || podman volume create patagia-postgres
podman run \
--detach \
--replace \
--name patagia-postgres \
--env POSTGRES_DB=patagia \
--env POSTGRES_USER=patagia \
--env POSTGRES_PASSWORD=swordfish \
--volume patagia-postgres:/var/lib/postgresql/data \
--volume "$XDG_RUNTIME_DIR/patagia-postgres:/var/run/postgresql" \
docker.io/postgres:17
# Reset PostgreSQL data and start
dev-postgres-reset: dev-postgres-clean dev-postgres
# Clean up PostgreSQL data
dev-postgres-clean:
podman rm -f patagia-postgres || true
podman volume rm patagia-postgres || true
# Connect to PostgreSQL with psql
dev-postgres-psql:
podman exec -it patagia-postgres psql -U patagia