From 76f733f9022ab69028a8afae5946b3ad70a47e14 Mon Sep 17 00:00:00 2001 From: Bhargav Kowshik Date: Fri, 5 Jan 2024 23:12:16 +0530 Subject: [PATCH] Remove explicit Prisma step instruction in the development setup (#538) --- README.md | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 43e18828..62d58d87 100644 --- a/README.md +++ b/README.md @@ -97,19 +97,14 @@ Mintplex Labs & the community maintain a number of deployment methods, scripts, ## How to setup for development -- `yarn setup` from the project root directory. - - This will fill in the required `.env` files you'll need in each of the application sections. Go fill those out before proceeding or else things won't work right. -- `yarn prisma:setup` To build the Prisma client and migrate the database. +- `yarn setup` To fill in the required `.env` files you'll need in each of the application sections (from root of repo). + - Go fill those out before proceeding. Ensure `server/.env.development` is filled or else things won't work right. +- `yarn dev:server` To boot the server locally (from root of repo). +- `yarn dev:frontend` To boot the frontend locally (from root of repo). +- `yarn dev:collector` To then run the document collector (from root of repo). + -To boot the server locally (from root of repo): -- ensure `server/.env.development` is set and filled out. -`yarn dev:server` - -To boot the frontend locally (from root of repo): -`yarn dev:frontend` -To then run the document collector (from root of repo) -`yarn dev:collector` [Learn about documents](./server/storage/documents/DOCUMENTS.md)