@defra-fish/pocl-job 1.57.0-rc.0 → 1.57.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -15
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -9,21 +9,16 @@ to maintain state during the import process.
|
|
|
9
9
|
|
|
10
10
|
# Environment variables
|
|
11
11
|
|
|
12
|
-
| name | description
|
|
13
|
-
| ------------------------- |
|
|
14
|
-
| NODE_ENV | Node environment
|
|
15
|
-
| POCL_FILE_STAGING_TABLE | The DynamoDB table used for staging POCL files
|
|
16
|
-
| POCL_RECORD_STAGING_TABLE | The DynamoDB table used for staging POCL records
|
|
17
|
-
| POCL_STAGING_TTL | The time to live for records in either staging table
|
|
18
|
-
|
|
|
19
|
-
|
|
|
20
|
-
|
|
|
21
|
-
|
|
|
22
|
-
| POCL_FTP_PRIVATE_KEY_PATH | The path to the folder containing the keys used to authenticate with the FTP server | yes | | | |
|
|
23
|
-
| POCL_S3_BUCKET | The name of the AWS S3 bucket in which to stage pocl data | yes | | | |
|
|
24
|
-
| DEBUG | Use to enable output of debug information to the console | yes | | pocl:\*, pocl:staging, pocl:transport, pocl:ftp | |
|
|
25
|
-
| AIRBRAKE_HOST | URL of airbrake host | no | | | |
|
|
26
|
-
| AIRBRAKE_PROJECT_KEY | Project key for airbrake logging | no | | | |
|
|
12
|
+
| name | description | required | default | valid | notes |
|
|
13
|
+
| ------------------------- | --------------------------------------------------------- | :------: | --------- | ----------------------------------------------- | ----- |
|
|
14
|
+
| NODE_ENV | Node environment | no | | development, test, production | |
|
|
15
|
+
| POCL_FILE_STAGING_TABLE | The DynamoDB table used for staging POCL files | yes | | | |
|
|
16
|
+
| POCL_RECORD_STAGING_TABLE | The DynamoDB table used for staging POCL records | yes | | | |
|
|
17
|
+
| POCL_STAGING_TTL | The time to live for records in either staging table | no | 168 hours | | |
|
|
18
|
+
| POCL_S3_BUCKET | The name of the AWS S3 bucket in which to stage pocl data | yes | | | |
|
|
19
|
+
| DEBUG | Use to enable output of debug information to the console | yes | | pocl:\*, pocl:staging, pocl:transport, pocl:ftp | |
|
|
20
|
+
| AIRBRAKE_HOST | URL of airbrake host | no | | | |
|
|
21
|
+
| AIRBRAKE_PROJECT_KEY | Project key for airbrake logging | no | | | |
|
|
27
22
|
|
|
28
23
|
### See also:
|
|
29
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@defra-fish/pocl-job",
|
|
3
|
-
"version": "1.57.0-rc.
|
|
3
|
+
"version": "1.57.0-rc.2",
|
|
4
4
|
"description": "Post Office Counter Licence sales processor",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@defra-fish/business-rules-lib": "1.57.0-rc.
|
|
39
|
-
"@defra-fish/connectors-lib": "1.57.0-rc.
|
|
38
|
+
"@defra-fish/business-rules-lib": "1.57.0-rc.2",
|
|
39
|
+
"@defra-fish/connectors-lib": "1.57.0-rc.2",
|
|
40
40
|
"commander": "^7.2.0",
|
|
41
41
|
"debug": "^4.3.3",
|
|
42
42
|
"filesize": "^6.4.0",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"moment-timezone": "^0.5.34",
|
|
46
46
|
"sax-stream": "^1.3.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "c4f5feb4e8bc1d4b6e413fb2344c3bee4fddd9ab"
|
|
49
49
|
}
|