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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user