Synced apps from source repository via GitHub Actions

This commit is contained in:
QYG2297248353
2025-08-06 09:30:56 +00:00
parent f0cfede1e6
commit adb6d423c8
13 changed files with 3930 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
# setup-2 copy env file
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