# Set Node version
nvm use
# Install yarn v1
npm i -g yarn
# Install dependencies
yarn
# Build common types
yarn build
# Start API (terminal 1)
yarn run start:api
# Start web app (terminal 2)
yarn run start:webyarn test:apiRequires API running on port 3000:
# Terminal 1: API server
yarn start:api
# Terminal 2: Run tests
yarn test:api:e2eRequires both API (port 3000) and web app (port 4200) running:
# Terminal 1: Web dev server
yarn start:web
# Terminal 2: Run Cypress
yarn test:web