From e212864d8b73d819569e07713ac21d9702ce126c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Fri, 12 Apr 2019 21:58:33 +0200 Subject: [PATCH] Add instruction to configure local cypress config cc @ulfgebhardt that was missing in the docs for you --- installation.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/installation.md b/installation.md index 1689c6bab..b13fae724 100644 --- a/installation.md +++ b/installation.md @@ -148,19 +148,19 @@ For further informations see also our [Kubernetes documentation](https://github. #### Install the dependencies ```bash -$ yarn -$ cd backend && yarn -$ cd ../ -$ cd webapp && yarn +$ yarn install +$ cd backend && yarn install +$ cd ../webapp && yarn install +$ cd .. ``` #### Copy Environment Variables ```bash -$ cd ../ -$ cd backend -$ cp .env.template .env +$ cp cypress.env.template.json cypress.env.json +$ cp backend/.env.template backend/.env +$ cp webapp/.env.template webapp/.env ``` -Configure the file `.env` according to your needs and your local setup. +Configure the new files according to your needs and your local setup.