You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Running the Development Server](#running-the-development-server)
20
+
-[Building Static Files](#building-static-files)
21
+
4.[Testing](#testing)
22
+
-[Running Tests](#running-tests)
23
+
-[Test Coverage](#test-coverage)
24
+
-[Writing Tests](#writing-tests)
25
+
5.[Code Quality](#code-quality)
26
+
-[Formatting](#formatting)
27
+
-[Linting](#linting)
28
+
-[Husky for Git Hooks](#husky-for-git-hooks)
29
+
6.[Run locally using Docker](#docker-deployment)
30
+
-[Prerequisites](#prerequisites)
31
+
-[Steps](#steps)
42
32
43
33
44
34
## Setting up Project
@@ -284,25 +274,7 @@ If you are a Docker lover, you have the option to use it following these instruc
284
274
285
275
After cloning repository to your local, perform the following steps from the root of the repository.
286
276
287
-
#### Windows Users Steps:
288
-
1. Build the Docker image:
289
-
```bash
290
-
docker build -t app .
291
-
```
292
-
293
-
2. Install dependencies inside the container:
294
-
```bash
295
-
docker run --rm -it -v "${PWD}:/app" app sh -c "yarn install"
296
-
```
297
-
298
-
3. Start the container:
299
-
```bash
300
-
docker run --rm -it -v "${PWD}:/app" -p 3000:3000 app
301
-
```
302
-
303
-
Note: ${PWD} refers to the current working directory on your system. This ensures that your local project folder is mounted to the /app directory inside the container.
0 commit comments