Adding base for adsb

This commit is contained in:
2025-04-21 19:15:11 -04:00
parent 06f9a96498
commit 95e4b8abf3
15 changed files with 1185 additions and 9 deletions

View File

@@ -24,12 +24,25 @@ psql: ## Connect to the PSQL DB
format-api: ## Format code
@cd api && cargo fmt
build-api: ## Build the project
build-api: ## Build the API project
@cd api && cargo build
run-api: ## Run the API project
@cd api && cargo run -p api
##################
# ADS-B Commands #
##################
build-adsb: ## Build the ADS-B project
@cd adsb && cargo build
run-sim: ## Run the ADS-B Simulator
@cd adsb/adsb_sim && cargo run -p adsb_sim
run-recv: ## Run the ADS-B Receiver
@cd adsb/adsb_recv && cargo run -p adsb_recv -- --sim
#################
# UI Commands #
#################