-
Build
motis
. Refer to the respective documentation if necessary: -
Build the UI:
motis$ cd ui motis/ui$ npm install -f motis/ui$ npm run build
-
Move the UI build into the build folder of
motis
:motis$ mv ui/build build/ui
-
Copy the tiles profiles to the
motis
build folder:motis$ cp -r deps/tiles/profile build/tiles-profiles
-
Download OpenStreetMap and timetable datasets and place them in the build folder of
motis
:motis/build$ wget https://github.com/motis-project/test-data/raw/aachen/aachen.osm.pbf motis/build$ wget https://opendata.avv.de/current_GTFS/AVV_GTFS_Masten_mit_SPNV.zip
-
Run
motis config
on the downloaded datasets to create a config file:motis/build$ ./motis config aachen.osm.pbf AVV_GTFS_Masten_mit_SPNV.zip
-
Run
motis import
and then start the server usingmotis server
:motis/build$ ./motis import motis/build$ ./motis server
-
Open
localhost:8080
in a browser to see if everything is working.