mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 23:22:53 +00:00
Moving to github
This commit is contained in:
26
k8s/secrets.yaml.example
Normal file
26
k8s/secrets.yaml.example
Normal file
@@ -0,0 +1,26 @@
|
||||
# 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"
|
||||
Reference in New Issue
Block a user