Tool to upload and download GTFS files with a MongoDB database
- Import GTFS from a zipfile to the database
curl --request POST \
--url http://localhost:3000/import_gtfs
- Extract GTFS from the database as a zipfile on the server
curl --request GET \
--url http://localhost:3000/export_gtfs
- Validate a GTFS zipfile on the server
curl --request GET \
--url http://localhost:3000/validate_gtfs?agency=<INSERT_AGENCY_KEY_HERE>
- Download a GTFS zipfile
curl --request GET \
--url http://localhost:3000/download_gtfs?agency=<INSERT_AGENCY_KEY_HERE>
You are welcome to contribute either directly via GitHub Pull Request or via Gerrit: https://review.gerrithub.io/q/project:transitco/GTFSloader+status:open
Intial setup to use Gerrit:
pip install git-review
Create a change:
git checkout -b BRANCH_NAME
- Modify your files
git add .
git commit -m "MESSAGE"
git review
Modify an existing change:
git review -d CHANGE_ID
- Modify your files
git add .
git commit --amend
git review