mirror of
https://git.oceanpay.cc/danial/kami_apple_exchage.git
synced 2025-12-18 23:02:56 +00:00
Remove distributed crawler system and refactor backend to focus on Apple Gift Card Exchange functionality. Update deployment configurations and dependencies accordingly.
13 lines
411 B
YAML
13 lines
411 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: apple-exchange-secret
|
|
namespace: apple-exchange
|
|
type: Opaque
|
|
data:
|
|
# Base64编码的敏感信息
|
|
# 使用: echo -n "your-password" | base64
|
|
DATABASE_PASSWORD: cGFzc3dvcmQ= # password
|
|
REDIS_PASSWORD: "" # 空密码
|
|
JWT_SECRET_KEY: eW91ci1qd3Qtc2VjcmV0LWtleQ== # your-jwt-secret-key
|
|
ENCRYPTION_KEY: eW91ci1lbmNyeXB0aW9uLWtleQ== # your-encryption-key |