Skip to content

Commit

Permalink
Merge branch 'release/3.1.39'
Browse files Browse the repository at this point in the history
  • Loading branch information
ddohler committed Oct 16, 2023
2 parents c1f5b1f + 03c4590 commit 51bf97b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ Development Dependencies
------------------------

* [Vagrant](http://www.vagrantup.com)
* [Ansible](http://www.ansible.com)
* [Ansible](http://www.ansible.com) v4 (versions 6+ seem not to work)


Development Installation
------------------------

1. Make sure you have the development dependencies installed
2. Place GTFS .zip files, OSM files, and elevation .tif files (optional) in the root of the otp_data folder
3. Generate a graph file with (takes approx 3 hours) `docker-compose run --rm otp otp --build /var/otp` in the deployment/graph directory.
3. (Optional) Generate a graph file with (takes approx 3 hours) `docker-compose run --rm otp otp --build /var/otp` in the deployment/graph directory.
4. Copy `deployment/ansible/group_vars/development_template` to `deployment/ansible/group_vars/development`
5. Change into the `src/` folder and run `npm install` to install the node modules on the host machine
6. Run `vagrant up`. You can choose to change the Virtualbox shared folder type for the `app` VM from its default NFS by:
Expand Down
2 changes: 2 additions & 0 deletions ansible.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[defaults]
ALLOW_WORLD_READABLE_TMPFILES = True
2 changes: 1 addition & 1 deletion src/app/scripts/cac/map/cac-map-overlays.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ CAC.Map.OverlaysControl = (function ($, cartodb, L, Utils) {
$.ajax({
cache: false,
dataType: 'json',
url: 'https://kiosks.bicycletransit.workers.dev/phl',
url: 'https://bts-status.bicycletransit.workers.dev/phl',
success: function (data) {
$.each(data.features, function (i, share) {
bikeShareFeatureGroup.addLayer(getBikeShareMarker(share));
Expand Down

0 comments on commit 51bf97b

Please sign in to comment.