Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 281 Bytes

File metadata and controls

14 lines (11 loc) · 281 Bytes

Quick Start

# Install dependencies
yarn

# Run a Next.js server at localhost:3000
yarn --cwd packages/web build
yarn start-web

# Run an Express API at localhost:8000 (in another terminal if you ran "yarn start-web")
yarn --cwd packages/server build
yarn start-server