Feat: Complete UI redesign, backend optimization, and Docker deployment support

This commit is contained in:
2026-01-10 18:54:14 +08:00
commit fd8f6f7a02
9 changed files with 1856 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
version: '3.8'
services:
saleshow:
build: .
container_name: saleshow-app
ports:
- "${APP_PORT:-5000}:5000" # 映射主机端口:容器端口,支持通过 APP_PORT 环境变量修改主机端口
environment:
- PORT=5000
- FLASK_DEBUG=False
volumes:
- ./uploads:/app/uploads # 挂载上传目录,持久化数据
restart: unless-stopped