- remove build specs - move pytest.ini into pyproject.toml - update readme - add pre-commit config - run formatters - add Makefile
79 lines
1.8 KiB
YAML
79 lines
1.8 KiB
YAML
service:
|
|
response_formatter: identity
|
|
operations:
|
|
upper:
|
|
input:
|
|
subdir: ""
|
|
extension: up_in.gz
|
|
multi: False
|
|
output:
|
|
subdir: ""
|
|
extension: up_out.gz
|
|
extract:
|
|
input:
|
|
subdir: ""
|
|
extension: extr_in.gz
|
|
multi: False
|
|
output:
|
|
subdir: "extractions"
|
|
extension: gz
|
|
rotate:
|
|
input:
|
|
subdir: ""
|
|
extension: rot_in.gz
|
|
multi: False
|
|
output:
|
|
subdir: ""
|
|
extension: rot_out.gz
|
|
classify:
|
|
input:
|
|
subdir: ""
|
|
extension: cls_in.gz
|
|
multi: True
|
|
output:
|
|
subdir: ""
|
|
extension: cls_out.gz
|
|
stream_pages:
|
|
input:
|
|
subdir: ""
|
|
extension: pgs_in.gz
|
|
multi: False
|
|
output:
|
|
subdir: "pages"
|
|
extension: pgs_out.gz
|
|
default:
|
|
input:
|
|
subdir: ""
|
|
extension: IN.gz
|
|
multi: False
|
|
output:
|
|
subdir: ""
|
|
extension: OUT.gz
|
|
|
|
storage:
|
|
minio:
|
|
endpoint: "http://127.0.0.1:9000"
|
|
access_key: root
|
|
secret_key: password
|
|
region: null
|
|
|
|
aws:
|
|
endpoint: https://s3.amazonaws.com
|
|
access_key: AKIA4QVP6D4LCDAGYGN2
|
|
secret_key: 8N6H1TUHTsbvW2qMAm7zZlJ63hMqjcXAsdN7TYED
|
|
region: $STORAGE_REGION|"eu-west-1"
|
|
|
|
azure:
|
|
connection_string: "DefaultEndpointsProtocol=https;AccountName=iqserdevelopment;AccountKey=4imAbV9PYXaztSOMpIyAClg88bAZCXuXMGJG0GA1eIBpdh2PlnFGoRBnKqLy2YZUSTmZ3wJfC7tzfHtuC6FEhQ==;EndpointSuffix=core.windows.net"
|
|
|
|
bucket: "pyinfra-test-bucket"
|
|
|
|
webserver:
|
|
host: $SERVER_HOST|"127.0.0.1" # webserver address
|
|
port: $SERVER_PORT|5000 # webserver port
|
|
mode: $SERVER_MODE|production # webserver mode: {development, production}
|
|
|
|
mock_analysis_endpoint: "http://127.0.0.1:5000"
|
|
|
|
use_docker_fixture: 1
|
|
logging: 0 |