Skip to content

Latest commit

 

History

History
51 lines (30 loc) · 674 Bytes

README.md

File metadata and controls

51 lines (30 loc) · 674 Bytes

Rest-to-graphql-migration

An app trying to be useful, but being useful is beside the point here.

Local development with docker compose

  1. Navigate to root
  2. Run the following
npm run dev

This will spin up both the frontend (port 5173) and the backend (port 4000).

If you want to see application logs, open another terminal and run:

npm run logs

To stop the container stack run

docker compose down

Local development without docker compose

Frontend

  1. Navigate to packages/frontend
  2. Run the following
npm run dev

Backend

  1. Navigate to packages/backend
  2. Run the following
npm run dev