A browser-based tool for enhancing map data for commuting.
You need to run the map-data-server which is serving the data that
is consumed by this web app.
You also need to set the environment variable VITE_GOOGLE_MAPS_API_KEY and VITE_MAP_DATA_SERVER_URL
in a .env file in the base directory with your Google Maps API key and the URL of the map-data-server respectively.
You can copy the .env.example file to .env and edit the placeholders and default values there.
The process of creating a new API key is documented here Generate API keys
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Babel for Fast Refresh
- @vitejs/plugin-react-swc uses SWC for Fast Refresh
Install Docker and docker compose and execute the command below, the app runs in http://localhost:8080/
docker compose up -dIf you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level
parserOptionsproperty like this:
export default {
// other rules...
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
project: ["./tsconfig.json", "./tsconfig.node.json"],
tsconfigRootDir: __dirname,
},
};- Replace
plugin:@typescript-eslint/recommendedtoplugin:@typescript-eslint/recommended-type-checkedorplugin:@typescript-eslint/strict-type-checked - Optionally add
plugin:@typescript-eslint/stylistic-type-checked - Install eslint-plugin-react and add
plugin:react/recommended&plugin:react/jsx-runtimeto theextendslist
