mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 08:01:00 +00:00
6 lines
220 B
Bash
Executable File
6 lines
220 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
DATA_DIR="${APP_DATA_DIR:-./data}"
|
|
mkdir -p "${DATA_DIR}/chunks" "${DATA_DIR}/rules" "${DATA_DIR}/wal" "${DATA_DIR}/compactor"
|
|
chown -R 10001:10001 "${DATA_DIR}" 2>/dev/null || true
|