From 4919240242da19db72f69bb833d171e7c7a0e31d Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Tue, 16 Sep 2025 15:13:36 +0200 Subject: [PATCH] Update readme info --- backend/email/README.md | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/backend/email/README.md b/backend/email/README.md index 1a48caf0..062fd2cf 100644 --- a/backend/email/README.md +++ b/backend/email/README.md @@ -7,17 +7,31 @@ A live preview right in your browser so you don't need to keep sending real emai First, install the dependencies: ```sh -npm install -# or -yarn +yarn install ``` Then, run the development server: ```sh -npm run dev -# or yarn dev ``` -Open [localhost:3000](http://localhost:3000) with your browser to see the result. +Open [localhost:3001](http://localhost:3001) with your browser to see the result. + + +### Notes + +Right now, I can't make the email server run without breaking the backend API and web, as they require different versions of react. + +To run the email server, temporarily install the deps in this folder. They require react 19. +```bash +yarn add -D @react-email/preview-server react-email +``` + +When you are done, reinstall react 18.2 by running `yarn clean-install` at the root so that you can run the backend and web servers again. + +## Useful commands + +```bash + +``` \ No newline at end of file