From 228b8a2b0e12a76a141d724a9a58500b0d005556 Mon Sep 17 00:00:00 2001 From: Christian Fehmer Date: Tue, 23 Jul 2024 14:03:03 +0200 Subject: [PATCH] docs: update contributing advanced (@fehmer) --- CONTRIBUTING_ADVANCED.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING_ADVANCED.md b/CONTRIBUTING_ADVANCED.md index 964723161..39a7f7fb4 100644 --- a/CONTRIBUTING_ADVANCED.md +++ b/CONTRIBUTING_ADVANCED.md @@ -134,13 +134,13 @@ npm run dev | Manual | Docker | | --------------------------- | ------------------------------ | -| `cd backend && npm run dev` | `cd backend && npm run docker` | +| `npm run dev-be` | `cd backend && npm run docker` | ### Frontend only | Manual | Docker | | ---------------------------- | ------------------------------- | -| `cd frontend && npm run dev` | `cd frontend && npm run docker` | +| `npm run dev-fe` | `cd frontend && npm run docker` | These commands will start a local development website on [port 3000](http://localhost:3000) and a local development server on [port 5005](http://localhost:5005). They will automatically rebuild the website/server when you make changes in the `src/` directory. Use Ctrl+C to stop them.