mirror of
				https://github.com/Phundrak/georm.git
				synced 2025-11-04 09:21:11 +00:00 
			
		
		
		
	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
		
			
				
	
	
		
			35 lines
		
	
	
		
			387 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			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:
 |