Formatting

This commit is contained in:
2025-04-22 22:23:34 -04:00
parent 95e4b8abf3
commit fdb53f0b7f
9 changed files with 170 additions and 168 deletions

View File

@@ -12,7 +12,7 @@ help: ## This info
@cat Makefile | grep -E '^[a-zA-Z\/_-]+:.*?## .*$$' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
@echo
format: format-api format-ui ## Format code
format: format-api format-ui format-adsb ## Format code
psql: ## Connect to the PSQL DB
@docker exec -it aviation-postgres psql -U ${POSTGRES_USER} -P pager=off
@@ -34,6 +34,9 @@ run-api: ## Run the API project
# ADS-B Commands #
##################
format-adsb: ## Format code
@cd adsb && cargo fmt
build-adsb: ## Build the ADS-B project
@cd adsb && cargo build