georm/justfile
Lucien Cartier-Tilet 6e1376e04a
chore: migrate development environment from Nix flakes to devenv
Replace Nix flake-based development setup with devenv for better
developer experience and more streamlined environment management.

Changes:
  - Remove flake.nix and flake.lock files
  - Add devenv.nix, devenv.yaml, and devenv.lock configuration
  - Update .envrc to use devenv instead of nix develop
  - Remove Docker development setup (compose.dev.yml, docker/mod.just)
  - Expand .gitignore with comprehensive IDE and OS exclusions
  - Remove Docker-related just commands from justfile
2025-06-05 23:37:48 +02:00

35 lines
387 B
Makefile

default: lint
clean:
cargo clean
test:
cargo test --all-targets --all
lint:
cargo clippy --all-targets
audit:
cargo deny check all
migrate:
cargo sqlx migrate run
build:
cargo build
build-release:
cargo build --release
format:
cargo fmt --all
format-check:
cargo fmt --check --all
check-all: format-check lint audit test
## Local Variables:
## mode: makefile
## End: