You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 7, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+16-10Lines changed: 16 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ We have added a new branch to this solution: the "development" branch. The "deve
6
6
7
7
## Running unit tests for customization
8
8
* Clone the repository, then make the desired code changes
9
+
* Install jest
10
+
```
11
+
npm install -g jest
12
+
```
9
13
* Next, run unit tests to make sure added customization passes the tests
10
14
```
11
15
cd ./source/aws-connect-vm-serverless
@@ -19,17 +23,20 @@ export DIST_OUTPUT_BUCKET=my-bucket-name # bucket where customized code will res
19
23
export SOLUTION_NAME=my-solution-name
20
24
export VERSION=my-version # version number for the customized code
21
25
```
22
-
_Note:_ You would have to create an S3 bucket with the prefix 'my-bucket-name-<aws_region>'; aws_region is where you are testing the customized solution. Also, the assets in bucket should be publicly accessible.
26
+
_Note:_ You would have to create an S3 bucket with the name 'my-bucket-name-<aws_region>'; aws_region is where you are testing the customized solution. Also, the assets in bucket should be accessible from the accounts you will run the CloudFormation stack.
23
27
28
+
* The build script requires Maven and npm; please ensure you have both of these installed in your environment.
0 commit comments