OpenTripPlanner Responsive Web Interface
This project is an Openmove customization of the library otp-react-redux and otp-ui
initially forked from: trimet-mod-otp.
Development continued on the Mentor project.
cloned from V3.3.0 in branch
git clone https://github.com/openmove/journey.git
optionally you can run local instance of OpenTripPlanner and other services
docker-compose up -d otp
switch to project node version:
nvm install
nvm use
node --version
edit .env file if needed
API_HOST=https://tripplanner.openmove.com
API_PATH=/otp/routers/default
API_PORT=443
GEOCODER_BASEURL=http://localhost:8088
apply the new .env file:
source .env
after changed some env var restart using yarn genconfig && yarn start
or rebuild journey docker image
yarn install
in JOURNEY_THEME path:
cd journey-customs/meridian
npm install
only first time generate src/config.yml from environment vars and base /config.yml file
npm run genconfig
yarn start
browse http://localhost:8081/
yarn install
src/config.yml
, as needed.See config.yml
comments for details.
Run the start
command with Yarn to deploy the application locally for testing. This command uses webpack-dev-server and deploys to http://localhost:8080
:
cd src
yarn start
Run the build
command with Yarn to bundle the application for production deployment. This command uses webpack running in production mode and produces minified/optimized code:
cd src
yarn build
This will build three files in the dist/
directory: index.html
, bundle.js
, and styles.css
. These files can then be deployed to any public-facing web server. Note: if deploying to a URL subdirectory, the path must match the reactRouter.basename
property specified in config.yml
.
Both the yarn build
and yarn start
commands are equipped with the ability to override the default src/index.tpl.html
, src/style.scss
, and config.js
(not to mention the config.yml
). This can be handy for injecting some custom scripts/widgets into the html (in a pinch), overriding the default branding, or configuring pieces of config.js
like the icons used for modes (e.g., car, bus, or trolley) and the disclaimers shown in the sidebar footer.
To override these files, run the start/build command with any of the options specified with an absolute file path to the file override. For example: