-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
18 lines (15 loc) · 754 Bytes
/
Copy pathenv.example
File metadata and controls
18 lines (15 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# storix configuration - copy to .env and edit.
# Every value can also be passed programmatically: get_storage('azure', container=...)
# which backend get_storage() builds: local | memory | azure (default: local)
STORIX_PROVIDER=local
# --- local backend ---
# base directory anchoring the filesystem (default: ~/.storix)
STORIX_LOCAL_BASE=~/.storix
# --- azure backend (ADLS Gen2; the account MUST have hierarchical namespaces enabled) ---
# STORIX_AZURE_CONTAINER=my-container
# STORIX_AZURE_ACCOUNT_NAME=my-account
# STORIX_AZURE_CREDENTIAL=sas-token-or-account-key
# transfer sizes in bytes (defaults: 4 MiB, 4 MiB, 32 MiB)
# STORIX_AZURE_READ_CHUNK_SIZE=4194304
# STORIX_AZURE_WRITE_CHUNK_SIZE=4194304
# STORIX_AZURE_READ_PREFETCH_SIZE=33554432