The steps below will walk you through setting up your own instance of the project.
To set up the development environment for this website, you'll need to install the following on your system:
The project uses environment variables, which are set by default in the .env file. To customize these variables (e.g., to use a custom database), create a .env.local file at the root of the repository (cp .env.example .env.local) and modify as needed.
Required Environment Variables:
NEXT_PUBLIC_MAPBOX_ACCESS_TOKEN: Your Mapbox access token for map tiles
For more detailed instructions on working with environment variables in Next.js, please consult the Next.js Environment Variables documentation.
Note: The .env.local file is configured to be ignored by Git to prevent accidental exposure of sensitive information.
If you use nvm, activate the desired Node version:
nvm installInstall Node modules:
pnpm installStart development server:
pnpm dev✨ You can now access the app at http://localhost:3000
TBD