-
Clone the repo:
git clone [ssh / http]
-
Ensure you have the correct node version installed, see the nvm section below.
-
Install dependencies:
npm install
-
Run the development server:
npm run dev
-
Open localhost:3000 with your browser to see the result.
There are two environment variable files committed to the repo:
.env.development
for when you runnpm run dev
.env.production
for when you runnpm run start
or deploy to Vercel
If an environment variable doesn't work on .env.development
,
you can override them by creating a .env.local
file.
Do not commit .env.local
to the repo.
Use Chromium-based browsers, i.e. Chrome, Edge, Opera, Brave, etc.
This project uses nvm to manage node versions.
If you have nvm installed,
you can run nvm use
to use the correct node version:
- node v18.17.0 (needed for Next.js v14)
- This is based on the
.nvmrc
file.
- This is based on the