mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 21:02:52 +00:00
27 lines
764 B
Plaintext
27 lines
764 B
Plaintext
# TurboVault Secrets Template
|
|
# Copy this file to secrets.yaml and update with your actual values
|
|
# DO NOT commit secrets.yaml to version control!
|
|
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: turbovault-secrets
|
|
namespace: turbovault
|
|
type: Opaque
|
|
stringData:
|
|
# Database password
|
|
DATABASE_PASSWORD: "changeme"
|
|
|
|
# Rails master key (generate with: rails secret)
|
|
SECRET_KEY_BASE: "changeme-use-rails-secret-to-generate"
|
|
|
|
# IGDB API credentials (optional, for game metadata)
|
|
IGDB_CLIENT_ID: "your_igdb_client_id"
|
|
IGDB_CLIENT_SECRET: "your_igdb_client_secret"
|
|
|
|
# Email configuration (optional, for password resets)
|
|
SMTP_ADDRESS: "smtp.example.com"
|
|
SMTP_PORT: "587"
|
|
SMTP_USERNAME: "your_smtp_username"
|
|
SMTP_PASSWORD: "your_smtp_password"
|