aboutsummaryrefslogtreecommitdiff
path: root/Taskfile.yml
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-12-08 01:37:10 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2025-12-08 01:37:10 +0100
commit107295575e3a7c37911ae192baf426b0003975a4 (patch)
treeceb528a428716d5313517a0fa72fcac3ea1360fb /Taskfile.yml
parent3b3fd2f6880eaa9170b480d41d43311925483bea (diff)
Refactor code structure for improved readability and maintainability; removed redundant code blocks and optimized functions.
Diffstat (limited to 'Taskfile.yml')
-rw-r--r--Taskfile.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/Taskfile.yml b/Taskfile.yml
index 747c018..583004e 100644
--- a/Taskfile.yml
+++ b/Taskfile.yml
@@ -14,7 +14,7 @@ tasks:
build-proto:
desc: Generates the protobuf bindings for C# and Python
cmds:
- - protoc --python_out=./src/gtfs_vigo_stops/src/proto --pyi_out=./src/gtfs_vigo_stops/src/proto --proto_path=./src/common ./src/common/stop_schedule.proto
+ - protoc --python_out=./src/gtfs_perstop_report/src/proto --pyi_out=./src/gtfs_perstop_report/src/proto --proto_path=./src/common ./src/common/stop_schedule.proto
- protoc --csharp_out=./src/Costasdev.Busurbano.Backend/Types/ --proto_path=./src/common ./src/common/stop_schedule.proto
build-backend:
@@ -42,8 +42,8 @@ tasks:
gen-stop-report:
desc: Generate stop-based JSON reports for specified dates or date ranges.
cmds:
- - uv --directory ./src/gtfs_vigo_stops run ./stop_report.py --output-dir ./output/vitrasa --feed-url https://datos.vigo.org/data/transporte/gtfs_vigo.zip --force --provider vitrasa
- - uv --directory ./src/gtfs_vigo_stops run ./stop_report.py --output-dir ./output/renfe --feed-url https://ssl.renfe.com/gtransit/Fichero_AV_LD/google_transit.zip --force --provider renfe
+ - uv --directory ./src/gtfs_perstop_report run ./stop_report.py --output-dir ./output/vitrasa --feed-url https://datos.vigo.org/data/transporte/gtfs_vigo.zip --force --provider vitrasa
+ - uv --directory ./src/gtfs_perstop_report run ./stop_report.py --output-dir ./output/renfe --feed-url https://ssl.renfe.com/gtransit/Fichero_AV_LD/google_transit.zip --force --provider renfe
gen-stop-json:
desc: Generate stop-based JSON files for specified dates or date ranges.