From 3c3e5fffa2e5e1e2a509e2e68caf8e2052f6d667 Mon Sep 17 00:00:00 2001 From: Parthvi <80334441+Parthvi12@users.noreply.github.com> Date: Sat, 30 Jul 2022 00:35:49 +0530 Subject: [PATCH] chore: Update ClientSetup.md with instructions on how to run with TED (#15411) Co-authored-by: Parthvi Goswami --- contributions/ClientSetup.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/contributions/ClientSetup.md b/contributions/ClientSetup.md index 400c7aa558..8bf9042a07 100644 --- a/contributions/ClientSetup.md +++ b/contributions/ClientSetup.md @@ -120,6 +120,14 @@ This error occurs because the node version is not compatible with the app enviro "PASSWORD": "Enter password" } ``` +2. In order to run cypress tests which use datasources/rest api, you will need to have TED container running: (It bundles multiple services together along with fake data for testing) + ``` + docker pull appsmith/test-event-driver + ``` + ``` + docker run --name appsmithted -d -p 2222:22 -p 5001:5001 -p 3306:3306 -p 28017:27017 -p 5432:5432 -p 25:25 -v `pwd`/git-server/keys:/git-server/keys -v `pwd`/git-server/repos:/git-server/repo appsmith/test-event-driver + ``` + Note : You need to have client and server running locally to run TED 1. run: