Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 639 Bytes

installation.md

File metadata and controls

27 lines (20 loc) · 639 Bytes

Installation

  • Install fnm or another node version manager (I highly recommend use-on-cd option)
  • Use the correct node version: fnm use
  • Install pnpm
  • Then run pnpm install

Start the app

What you need to do to (re)start the project:

  • Frontend: run pnpm dev
  • Backend: run pnpm dev

if you want to create a new user to sign-up:

curl --request POST \
  --url http://localhost:8000/users \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "username",
  "email":"[email protected]",
  "password":"password"
}'