| 1234567891011121314151617181920212223 | ROOT = "./scripts"SEMVER_VERSION=$(shell grep version Cargo.toml | awk -F"\"" '{print $$2}' | head -n 1).PHONY: init_database run_docker run_testinit_database:	POSTGRES_PORT=5433 ${ROOT}/init_database.shdocker_image:	source $(ROOT)/docker_env.sh && docker-compose up -d db	source $(ROOT)/docker_env.sh && docker-compose up -d backendlocal_server:	cargo rundocker_test:	sh $(ROOT)/docker_test.shlocal_test:	# 🔥 Must run init_database first	 SQLX_OFFLINE=true cargo test
 |