Skip to content

How to develop

Moritz Kirmse edited this page Sep 9, 2022 · 2 revisions

Running the dev instance:

To run the dev server, only 2 commands are needed in a node docker container:

docker run -it --rm -v $(pwd):/geoportail -p 8080:8080 -u $(id -u):$(id -g) node bash

Then inside the docker console:

cd /geoportail
npm install
npm exec -- parcel serve index.html --port 8080

The app is available on http://localhost:8080

Hot reload is enabled.

Clone this wiki locally