Update app version [skip ci]

This commit is contained in:
github-action update-app-version
2024-12-04 03:33:02 +00:00
parent 5b99573a87
commit f00b0fe171
7 changed files with 0 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
additionalProperties:
formFields:
- default: 1188
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: API 端口
labelEn: API Port
required: true
rule: paramPort
type: number
- default: ""
edit: true
envKey: TOKEN
labelZh: 访问令牌以保护您的 API
labelEn: Access Token to protect your API
required: false
type: text
- default: ""
edit: true
envKey: AUTHKEY
labelZh: DeepL官方提供的API Auth Key
labelEn: Official API Auth Key provided by DeepL
required: false
type: text
- default: ""
edit: true
envKey: DL_SESSION
labelZh: DeepL Pro 帐户 dl_session cookie
labelEn: DeepL Pro account dl_session cookie
required: false
type: text
- default: ""
edit: true
envKey: PROXY
labelZh: http代理服务器地址
labelEn: http proxy server address
required: false
rule: paramExtUrl
type: text
+20
View File
@@ -0,0 +1,20 @@
networks:
1panel-network:
external: true
services:
deeplx:
image: qyg2297248353/deeplx:v1.0.1.0
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:1188
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
environment:
- PORT=1188
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai
+17
View File
@@ -0,0 +1,17 @@
#!/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
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+17
View File
@@ -0,0 +1,17 @@
#!/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
echo "Check Finish."
else
echo "Error: .env file not found."
fi