Merge pull request #460 from Human-Connection/docs-add_missing_env_instruction

Add instruction to configure local cypress config
This commit is contained in:
Robert Schäfer 2019-04-14 23:36:59 +02:00 committed by GitHub
commit 3edfa42f1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.