mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 08:01:00 +00:00
11 lines
212 B
Bash
Executable File
11 lines
212 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
DATA_DIR="${APP_DATA_DIR:-./data}"
|
|
mkdir -p \
|
|
"${DATA_DIR}/server" \
|
|
"${DATA_DIR}/connect" \
|
|
"${DATA_DIR}/shared" \
|
|
"${DATA_DIR}/mysql" \
|
|
"${DATA_DIR}/localstack"
|