Remove explicit Prisma step instruction in the development setup (#538)

This commit is contained in:
Bhargav Kowshik 2024-01-05 23:12:16 +05:30 committed by GitHub
parent 3e088f22b1
commit 76f733f902
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)