Spaces:
Sleeping
Sleeping
File size: 878 Bytes
93e2220 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | # Makefile for TransitPulse
.PHONY: data data-full benchmark serve demo cloud clean
data:
py generate_pings.py --scale small
data-full:
py generate_pings.py --scale full
benchmark:
py benchmark.py --run-all
serve:
py -m uvicorn server:app --reload --host 0.0.0.0 --port 8000
demo:
py generate_pings.py --scale small
py pipeline.py --input data/pings --output data/output
py scripts/generate_copilot_cache.py
py -m uvicorn server:app --host 0.0.0.0 --port 8000
cloud:
@echo "Running in Cloud Mode (GCS + BigQuery)..."
py generate_pings.py --scale small
py pipeline.py --input data/pings --output data/output
py scripts/generate_copilot_cache.py
py loader.py
SET BQ_SERVE_MODE=cloud&& py -m uvicorn server:app --host 0.0.0.0 --port 8000
clean:
if exist data rmdir /s /q data
if exist results\benchmark_results.json del /f /q results\benchmark_results.json
|