From 7e0b60ee0c0aa4b9f0da7d837069ebd5d81d72fb Mon Sep 17 00:00:00 2001 From: Alexey Zinoviev Date: Mon, 17 Feb 2025 19:34:24 +0400 Subject: [PATCH] uberf-9394: adjust readme to account changes (#8030) Signed-off-by: Alexey Zinoviev --- README.md | 8 +++----- scripts/create-workspace.sh | 5 ++--- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 3fb5866445..48d5b15082 100644 --- a/README.md +++ b/README.md @@ -134,12 +134,10 @@ Before you can begin, you need to create a workspace and an account and associat ```bash cd ./tool # dev/tool in the repository root -rushx run-local create-workspace ws1 -w DevWorkspace # Create workspace rushx run-local create-account user1 -p 1234 -f John -l Appleseed # Create account -rushx run-local configure ws1 --list --enable '*' # Enable all modules, even if they are not yet intended to be used by a wide audience. -rushx run-local assign-workspace user1 ws1 # Assign workspace to user. -rushx run-local confirm-email user1 # To allow the creation of additional test workspaces. - +rushx run-local create-workspace ws1 email:user1 # Create workspace +rushx run-local configure ws1 --list --enable '*' # Enable all modules, even if they are not yet intended to be used by a wide audience +rushx run-local assign-workspace user1 ws1 # Assign user to workspace ``` Alternatively, you can just execute: diff --git a/scripts/create-workspace.sh b/scripts/create-workspace.sh index e61d44333a..0b2b675ec2 100644 --- a/scripts/create-workspace.sh +++ b/scripts/create-workspace.sh @@ -1,6 +1,5 @@ cd ./dev/tool -rushx run-local create-workspace ws1 -w DevWorkspace # Create workspace rushx run-local create-account user1 -p 1234 -f John -l Appleseed # Create account +rushx run-local create-workspace ws1 email:user1 rushx run-local configure ws1 --list --enable '*' # Enable all modules, even if they are not yet intended to be used by a wide audience. -rushx run-local assign-workspace user1 ws1 # Assign workspace to user. -rushx run-local confirm-email user1 # To allow the creation of additional test workspaces. \ No newline at end of file +rushx run-local assign-workspace user1 ws1 # Assign workspace to user. \ No newline at end of file