mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 08:01:00 +00:00
14 lines
280 B
Bash
Executable File
14 lines
280 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
DATA_DIR="${APP_DATA_DIR:-./data}"
|
|
mkdir -p \
|
|
"${DATA_DIR}/postgres" \
|
|
"${DATA_DIR}/redis" \
|
|
"${DATA_DIR}/weblate-data" \
|
|
"${DATA_DIR}/weblate-cache"
|
|
|
|
chown -R 1000:1000 \
|
|
"${DATA_DIR}/weblate-data" \
|
|
"${DATA_DIR}/weblate-cache"
|