From 924a02b847d69a27529f8456c6d59048a56793b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Stenchl=C3=A1k?= Date: Mon, 23 Oct 2023 16:04:52 +0200 Subject: [PATCH] Fix documentation typo --- applications/client/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/client/README.md b/applications/client/README.md index ced5d24b4..cf654005c 100644 --- a/applications/client/README.md +++ b/applications/client/README.md @@ -16,14 +16,14 @@ See the [project structure](documentation/2022-04-21-project-structure.md), indi ## Building Docker image -1. Optionally create `./env.local` file that overrides `./.env`. +1. Optionally create `./.env.local` file that overrides `./.env`. 2. Run `docker build -f client-application.dockerfile -t dataspecer/client .` from the root of this monorepository. 3. Start the application by running `docker run -p 80:80 dataspecer/client`. ## Build instructions 1. Clone the whole mono repository. `git clone ...` -2. Optionally create `./env.local` file that overrides `./.env` or use environmental variables during the build. +2. Optionally create `./.env.local` file that overrides `./.env` or use environmental variables during the build. 3. Run `npm install` from the **root of the repository** to install Lerna. 4. Run `lerna bootstrap` to install and link all packages. 5. Run `lerna run build` to build `@dataspecer/core` and other packages and the editor. All generated files are in the `./buid` directory.