diff --git a/Dockerfile b/Dockerfile index 4481abeb0918967505178f163e79689d4baa89b4..6f633c491d7f7c7cbd1bd7a378611a852942fc53 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,5 +34,6 @@ ENV DASHBOARD_BASE_URL=http://localhost:4200 \ IDRA_BASE_URL=http://localhost:8080 \ DATALET_BASE_URL=http://localhost/deep/deep-components/creator.html \ TRAFFICSIMSERVER_API_BASE_URL=http://localhost:8081 \ - DASHBOARD_CTRL_API_BASE_URL=http://localhost:8085 + DASHBOARD_CTRL_API_BASE_URL=http://localhost:8085 \ + BIKETRAJECTORY_API_BASE_URL=http://localhost:8000/urbanite_biketrajectories diff --git a/adapt-config-json.sh b/adapt-config-json.sh index e6107152773829c8311aa25474d750bbd63090a4..a8b837dac5594d167e017e0c35000466646778d5 100644 --- a/adapt-config-json.sh +++ b/adapt-config-json.sh @@ -17,3 +17,4 @@ sed -i -e "s|__IDRA_BASE_URL__|$IDRA_BASE_URL|g" $FILE sed -i -e "s|__DATALET_BASE_URL__|$DATALET_BASE_URL|g" $FILE sed -i -e "s|__TRAFFICSIMSERVER_API_BASE_URL__|$TRAFFICSIMSERVER_API_BASE_URL|g" $FILE sed -i -e "s|__DASHBOARD_CTRL_API_BASE_URL__|$DASHBOARD_CTRL_API_BASE_URL|g" $FILE +sed -i -e "s|__BIKETRAJECTORY_API_BASE_URL__|$BIKETRAJECTORY_API_BASE_URL|g" $FILE diff --git a/src/assets/config-template.json b/src/assets/config-template.json index 9f21ae4b83cc83085ad95ccd6a3ca5d48414718c..22cdca842765e0cbe5109336bc3f4f3ac76b1df1 100644 --- a/src/assets/config-template.json +++ b/src/assets/config-template.json @@ -10,6 +10,7 @@ "traffic_prediction_api_base_url":"__TRAFFIC_PREDICTION_API_BASE_URL__", "bike_analysis_api_base_url":"__BIKE_ANALYSIS_API_BASE_URL__", "gltraffic_api_base_url":"__GLTRAFFIC_API_BASE_URL__", + "biketrajectory_api_base_url":"__BIKETRAJECTORY_API_BASE_URL__", "bus_od_api_base_url":"__BUS_OD_API_BASE_URL__", "idra_base_url":"__IDRA_BASE_URL__", "idra_portal_base_href":"IdraPortal", diff --git a/src/assets/config.json b/src/assets/config.json index 5c6f7d3798f6bcd5dd4fb583c3339602240b3492..ded15d95a11c030473fed3be2b02c023b1bb780b 100644 --- a/src/assets/config.json +++ b/src/assets/config.json @@ -43,5 +43,4 @@ "jsi":{ "traffic_sim_server":"http://localhost:8081" } - }