From c492424de4fc7c42e2779450573d5947eca2b418 Mon Sep 17 00:00:00 2001 From: Willy Brauner Date: Wed, 29 Nov 2023 16:52:21 +0100 Subject: [PATCH] Update README.md.template --- cli/tasks/setup/templates/README.md.template | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/cli/tasks/setup/templates/README.md.template b/cli/tasks/setup/templates/README.md.template index 8bf3b71b..b702a89d 100644 --- a/cli/tasks/setup/templates/README.md.template +++ b/cli/tasks/setup/templates/README.md.template @@ -12,11 +12,6 @@ apps └- front ⬅ chersite frontend starter ``` -## Production requirements - -- [node](https://nodejs.org/en) -- ... - ## Local development ### Installation @@ -37,7 +32,7 @@ docker compose exec node /bin/bash - Install node dependencies for the root project and install dependencies for all apps: ```shell -npm run init +npm i ``` ### Development @@ -45,7 +40,7 @@ npm run init Start the dev server from the root folder: ```shell -npm run dev:front +npm run front:dev ``` ### Build @@ -53,7 +48,7 @@ npm run dev:front Build the app on your machine: ```shell -npm run build:front +npm run front:build ``` ## Deployment