发布应用:泡泡广场/泡泡(PaoPao)

Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
2024-12-02 16:58:25 +08:00
parent a261c63576
commit 2a73136972
10 changed files with 1 additions and 1 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