gitextract_o8etyil8/ ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── justfile ├── public/ │ └── static/ │ ├── css/ │ │ └── default.css │ ├── image/ │ │ └── README.md │ └── javascript/ │ └── main.js └── source/ ├── api/ │ ├── geocode/ │ │ ├── indexer/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ └── searcher/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── main.rs │ └── tile/ │ ├── Cargo.toml │ ├── database/ │ │ └── .keep │ ├── diesel.toml │ └── src/ │ ├── main.rs │ ├── models.rs │ └── schema.rs ├── client/ │ ├── elm.json │ ├── src/ │ │ ├── Atlasr/ │ │ │ ├── Geocode.elm │ │ │ ├── Map.elm │ │ │ ├── MapboxGL/ │ │ │ │ ├── Options.elm │ │ │ │ └── Ports.elm │ │ │ ├── Position.elm │ │ │ └── Route.elm │ │ ├── Main.elm │ │ └── index.html │ └── tests/ │ ├── elm-package.json │ └── unit/ │ └── Atlasr/ │ └── Test/ │ └── Position.elm └── server/ ├── Cargo.toml └── src/ └── main.rs