Before running the project you will need to install nvm
, Here is the documentation to install nvm. The .nvmrc
file is used to install the correct node version for this project, install it by running this command in your terminal
nvm use
- Install dependencies using
npm install
for this project - Create a
.env.local
file for all your secrets needed for the application, just copy and paste whats in the.env
file by running this command in your terminal
cat .env > .env.local
- Then run
npm run dev
to get get the project running on localhost:3000. Alternativelynpm run build
to get a build output of the project
"dev"
: Running NextJS application in development mode"build"
: Build the NextJS application"start"
: Run the NextJS application"typecheck"
: Just runs atsc
to unsure the project build works, only used for deployment