fix: PayPal payment_method column length issue; add image model selection for storyboard; remove task restore popups; sync UserWork status on task failure

This commit is contained in:
AIGC Developer
2025-12-05 09:57:09 +08:00
parent dbd06435cb
commit b4b0230ee1
484 changed files with 5238 additions and 5379 deletions

View File

@@ -14,6 +14,9 @@ spring.servlet.multipart.enabled=true
# Tomcat 最大POST大小
server.tomcat.max-http-post-size=600MB
# JPA配置 - 禁用open-in-view避免视图层执行SQL查询
spring.jpa.open-in-view=false
# 应用配置
app.upload.path=uploads
app.video.output.path=outputs
@@ -50,3 +53,19 @@ tencent.cos.region=ap-guangzhou
# COS存储桶名称例如my-bucket-1234567890
tencent.cos.bucket-name=
# ============================================
# PayPal支付配置
# ============================================
# 注意请将实际的PayPal凭证配置到 application-dev.properties 中
# 该文件已在.gitignore中不会被提交到版本控制
# PayPal Client ID请在application-dev.properties中配置
paypal.client-id=
# PayPal Client Secret请在application-dev.properties中配置
paypal.client-secret=
# PayPal模式sandbox(测试环境) 或 live(生产环境)
paypal.mode=sandbox
# 支付成功回调URL
paypal.success-url=https://vionow.com/api/payment/paypal/success
# 支付取消回调URL
paypal.cancel-url=https://vionow.com/api/payment/paypal/cancel