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
Also properly configure AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION, ATTACHMENT_S3_BUCKET, IS_LOCAL_DB config parameters.
57
+
Also properly configure AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION, PHOTO_S3_BUCKET, IS_LOCAL_DB config parameters.
58
58
59
59
Test configuration is at `config/test.js`. You don't need to change them.
60
60
The following test parameters can be set in config file or in env variables:
@@ -88,7 +88,7 @@ It starts Elasticsearch, DynamoDB and S3 compatible server.
88
88
3. Initialize/Clear database: `npm run init-db`
89
89
4. Create Elasticsearch index: `npm run init-es`, or to re-create index: `npm run init-es force`
90
90
5. Seed/Insert data to ES and DB: `npm run seed-data`
91
-
6. View DB table data: `npm run view-db-data <ModelName>`, ModelName can be `Member`, `MemberDistributionStats`, `MemberHistoryStats`or `MemberStats`
91
+
6. View DB table data: `npm run view-db-data <ModelName>`, ModelName can be `Member`, `MemberDistributionStats`, `MemberHistoryStats`, `MemberStats`, `MemberSkill`or `MemberFinancial`
92
92
7. View ES data: `npm run view-es-data`
93
93
94
94
## Local Deployment
@@ -169,6 +169,6 @@ Refer to the verification document `Verification.md`
169
169
because there is seed-data script to setup data to test the members API,
170
170
the tests also have setup data properly
171
171
- the tests use mock S3 service, so you may use the provided mock AWS credential for tests,
172
-
but Postman tests require using real AWS S3, you need to follow README.md to create S3 bucket and provide your own AWS credential
172
+
but Postman tests require using real AWS S3, you need to follow above to create S3 bucket and provide your own AWS credential
Copy file name to clipboardExpand all lines: Verification.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
- run the Postman tests
8
8
9
9
## DynamoDB Verification
10
-
Run command `npm run view-db-data <ModelName>` to view table data, ModelName can be `Member`, `MemberDistributionStats`, `MemberHistoryStats`or `MemberStats`
10
+
Run command `npm run view-db-data <ModelName>` to view table data, ModelName can be `Member`, `MemberDistributionStats`, `MemberHistoryStats`, `MemberStats`, `MemberSkill`or `MemberFinancial`
0 commit comments