Synced apps from source repository via GitHub Actions

This commit is contained in:
QYG2297248353
2024-12-04 03:08:24 +00:00
parent c472f6b912
commit e8d6cc738d
1394 changed files with 42558 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/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 config file
mkdir -p "$PAOPAO_CE_ROOT_PATH"
mkdir -p "$PAOPAO_CE_ROOT_PATH/config"
mkdir -p "$PAOPAO_CE_ROOT_PATH/scripts"
cp ./conf/config.yaml "$PAOPAO_CE_ROOT_PATH/config/config.yaml"
cp ./conf/paopao-mysql.sql "$PAOPAO_CE_ROOT_PATH/scripts/paopao-mysql.sql"
chown -R 1000:1000 "$PAOPAO_CE_ROOT_PATH"
echo "Check Finish."
else
echo "Error: .env file not found."
fi