This powers the map-dashboard app.
First, add your git display name and email address to .gitconfig
.
Then, using any editor that supports Devcontainers, open in a dev container context.
For VSCode, install the extension Remote Development
https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack,
and open in a dev container window.
You can also run soley in Docker. Simply run
docker compose -f .devcontainer/docker-compose.yml up -d
To start the development server inside the container
pnpm dev
A development container running Postgres should automatically start and be available with the most recent migration.
You can rebuild your development database with
pnpm db:rebuild
See package.json
for a full list of db commands.
You can run Jest with
pnpm test