From 24301a89336553bf68aac9d3d60adb21e4bf7dee Mon Sep 17 00:00:00 2001 From: Anton Tranelis <31516529+antontranelis@users.noreply.github.com> Date: Tue, 18 Nov 2025 18:13:09 +0100 Subject: [PATCH] fix(docu): update README.md (#441) --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1efb28dc..7a251ac2 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,23 @@ Utopia Map is made for networks and initiatives that aim to connect people in r Clone the repository and get started with the following commands: +**Start docker** ```bash -npm install +docker compose up -d +``` +**Initialize backend** + +```bash +sudo chmod 777 -R ./data/ +cd backend/ +./push.sh +./seed.sh +``` +After this the frontend is running on http://localhost:8080 and the backend on http://localhost:8055 + +**Start dev server** +```bash +cd app/ npm run dev ```