From c6c91c51e1f84a7e61838059c65413def5cbb982 Mon Sep 17 00:00:00 2001 From: Ruslan Kabalin Date: Sat, 13 Jun 2026 21:48:32 +0100 Subject: [PATCH] docs: Update setup instruction. --- docs/dev/setup.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/dev/setup.md b/docs/dev/setup.md index 7c7a6cd..878e8ae 100644 --- a/docs/dev/setup.md +++ b/docs/dev/setup.md @@ -20,14 +20,12 @@ allow you to start with development. You need to have [docker](https://docs.docker.com/engine/install/) and [compose](https://docs.docker.com/compose/cli-command/) installed first. ```bash -# Start Mongo container in background -docker compose up -d mongo -# Import Pastvu database -docker compose exec mongo initdb # Create config file cp ./config/local.config.js.docker-example ./config/local.config.js +# Get the dump +wget https://archive.varlamov.me/pastvu/github/pastvu.gz # Install node modules -docker compose run --rm --no-deps app npm install +docker compose run --rm app npm install # Start the application docker compose up ```