From aee6ea663883f61272c1f1f37996070218bd8561 Mon Sep 17 00:00:00 2001 From: Raph Date: Sun, 19 Jul 2026 16:09:52 +0200 Subject: [PATCH] update readme --- README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/README.md b/README.md index 6e6e837..df877ae 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,37 @@ # gestion-inscriptions-mycompet +## Setup + +### Node + +```bash +nvm install 24.14.1 + +nvm use 24.14.1 + +npm install +``` + +### .env + +Create the .env (from .env.example) + +## Run modules + +### Database + +```bash +docker compose up -d db +``` + +### Backend + +```bash +npm run start:dev -w backend +``` + +### Frontend + +```bash +npm run dev -w frontend +```