1
0

chore(deps): update jiangrui1994/cloudsaver docker tag to v0.6.5 (#3534)

This commit is contained in:
renovate[bot]
2026-01-18 17:03:46 +00:00
committed by GitHub
parent fffe77d149
commit 7f23d6408a
4 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
CONFIG_DIR="$CLOUDSAVER_ROOT_PATH/config"
mkdir -p "$CONFIG_DIR"
CONFIG_FILE="$CONFIG_DIR/env"
cp ./config/env.example $CONFIG_FILE
sed -i "s/JWT_SECRET=.*/JWT_SECRET=$JWT_SECRET/" $CONFIG_FILE
echo "Check Finish."
else
echo "Error: .env file not found."
fi