- node + npm (
brew install node
)
- Ensure
node
andnpm
are installed - Install project dependencies via npm (
npm install
) - Make a copy of
example.env
and rename to.env
- Fill in missing information in
.env
npm run start:dev
to start developement server
- set
NODE_ENV
to 'development' npm run start:dev
to start server in development mode
- set
NODE_ENV
to 'production' npm start
to compile and start server in production mode