hyper-tuner-cloud/DEVELOPMENT.md

467 B

Development guide

This guide will help you set up this project.

Requirements

  • Node Version Manager: nvm

Setup local environment variables

cp .env .env.local

Setup correct Node.js version

nvm use

Install dependencies and run in development mode

# install packages
npm install

# run development server
npm start

# lint code
npm run lint

# production build
npm run build