mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-25 16:01:04 +00:00
Source: okxlin/appstore#4782 Contributor: @YuniqueUnic Includes the upstream v1.5.2 log-redaction fix, lifecycle scripts, strict-store normalization, and documented base-image CVE assessment.
7 lines
146 B
Bash
Executable File
7 lines
146 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
DATA_DIR="${APP_DATA_DIR:-./data}"
|
|
STORAGE_DIR="${APP_STORAGE_DIR:-./storage}"
|
|
mkdir -p "$DATA_DIR" "$STORAGE_DIR"
|