mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-26 00:01:06 +00:00
* Update linkease/kspeeder Docker tag to v0.7.14 * Update app version [skip ci] --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
7 lines
155 B
Bash
Executable File
7 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
DATA_DIR="${APP_DATA_DIR:-./data/runtime}"
|
|
CONFIG_DIR="${APP_CONFIG_DIR:-./data/config}"
|
|
mkdir -p "$DATA_DIR" "$CONFIG_DIR"
|