From 578eb8cef55e91a41c0d9dbb29195eede9afe90e Mon Sep 17 00:00:00 2001 From: Eric Cabrel TIOGO Date: Tue, 12 Dec 2023 14:05:26 +0100 Subject: [PATCH] docs: update readme docs: update readme++ docs: update readme+++ --- apps/web/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/web/README.md b/apps/web/README.md index 48eb451e..11f63dd3 100644 --- a/apps/web/README.md +++ b/apps/web/README.md @@ -27,10 +27,12 @@ Delete the existing folders output from build commands ```shell yarn clean ``` + Install node modules ````shell yarn install ```` + Create configuration file from the template ```shell cp .env.template .env.local @@ -58,14 +60,17 @@ Run the command below to run all the tests ```shell yarn test ``` + To run a specific test file, append the filename after the command ```shell yarn test home.test.ts ``` + ## Lint the project ESLint and Prettier are used to normalize the code style across the project. Linting the code make sure there is no error + ```shell yarn lint ```