1
0

🔧 chore(veloera): standardize directory naming to lowercase

- rename all Veloera directory references to lowercase (veloera) for consistency
- maintain file structure and content integrity during rename operation
This commit is contained in:
pooneyy
2025-11-13 23:17:20 +08:00
parent ea275ad5cb
commit 34c438789b
5 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
additionalProperties:
formFields:
- default: 3000
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
label:
en: Port
zh: 端口
required: true
rule: paramPort
type: number
- default: Asia/Shanghai
edit: true
envKey: TZ
labelEn: Time Zone
labelZh: 时区
label:
en: Time Zone
zh: 时区
required: true
type: text

View File

@@ -0,0 +1,25 @@
services:
new-api:
image: ghcr.io/veloera/veloera:v0.3.29.1
container_name: ${CONTAINER_NAME}
restart: always
ports:
- ${PANEL_APP_PORT_HTTP}:3000
networks:
- 1panel-network
command: --log-dir /app/logs
volumes:
- ./data:/data
- ./logs:/app/logs
environment:
- TZ=${TZ}
# - SESSION_SECRET=${SESSION_SECRET}
# - REDIS_CONN_STRING=redis://redis
# - NODE_TYPE=slave # 多机部署时从节点取消注释该行
# - SYNC_FREQUENCY=60 # 需要定期从数据库加载数据时取消注释该行
# - FRONTEND_BASE_URL=https://openai.justsong.cn # 多机部署时从节点取消注释该行
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true