Adding base for adsb
This commit is contained in:
15
Makefile
15
Makefile
@@ -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 #
|
||||
#################
|
||||
|
||||
Reference in New Issue
Block a user