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
Copy file name to clipboardExpand all lines: README.md
+15-6Lines changed: 15 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -22,14 +22,23 @@ ReBACH is run via the command line as outlined in the 'How to Run' section of th
22
22
## How to run:
23
23
- Copy the .env.sample.ini file and give it a name of your choice (e.g. .env.ini).
24
24
- Fill out the .env.ini file (IMPORTANT: Make sure not to commit this file to Github)
25
-
- url - required: The figshare API url
26
-
- token - required: Your auth token to your organization's API
27
-
- retries - required: Number of times the script should retry API or file system calls if it is unable to connect. Defaults to 3
28
-
- retries_wait - required: Number of seconds the script should wait between call retries if it is unable to connect. Defaults to 10
29
-
- institution - required: The Figshare Institution ID for your organization
25
+
- figshare_api
26
+
- url - required: The figshare API url
27
+
- token - required: Your auth token to your organization's API
28
+
- retries - required: Number of times the script should retry API or file system calls if it is unable to connect. Defaults to 3
29
+
- retries_wait - required: Number of seconds the script should wait between call retries if it is unable to connect. Defaults to 10
30
+
- institution - required: The Figshare Institution ID for your organization
31
+
- aptrust_api
32
+
- url - required: The AP Trust member API url including the version
33
+
- user - required: Your user email address on AP Trust
34
+
- token - required: Your user secret token on AP Trust
35
+
- items_per_page - Maximum number of object to be return per page by the API
36
+
- alt_identifier_starts_with - Prefix for alternate identifier in AP Trust
37
+
- retries - required: Number of times the script should retry API or file system calls if it is unable to connect. Defaults to 3
38
+
- retries_wait - required: Number of seconds the script should wait between call retries if it is unable to connect. Defaults to 10
30
39
- preservation_storage_location - required: The file system location where the preservation folders/packages should be created
31
40
- logs_location - required: The file system location where logs should be created. This value will override the one in `bagger/config/default.toml` when bagger is used for post-processing (see post_process_script_command setting below).
32
-
-additional_precentage_required - required: How much extra space the preservation storage location should have in order to handle files as a percent. This percent is applied to the total storage needed for all files. I.e. if the value of this field is 10 and the amount of storage needed for files is 1 GB, the script will make sure that the preservation storage location has at least 1.1 GB free. Defaults to 10
41
+
- additional_percentage_required - required: How much extra space the preservation storage location should have in order to handle files as a percent. This percent is applied to the total storage needed for all files. I.e. if the value of this field is 10 and the amount of storage needed for files is 1 GB, the script will make sure that the preservation storage location has at least 1.1 GB free. Defaults to 10
33
42
- pre_process_script_command - optional: The terminal command (including arguments) to invoke a script to be run BEFORE the files are copied and logic applied to the preservation storage (note: this action is not currently implemented)
34
43
- post_process_script_command - required: Specifies the method of performing post-processing steps. This can take only two values: the string 'Bagger', or the path to an external script. If the value is set to 'Bagger', the post-processing steps will consist of running the internal `bagger` module. If the value is set to a path to an external script, the post-processing steps will be executed by invoking the external script through the function 'post_process_script_function'. The post-processing steps are executed AFTER the files are copied and logic applied to the preservation storage.
35
44
- curation_storage_location - required: The file system location where the Curation files reside
0 commit comments