- Add .env.example file for environment variable setup - Add .gitignore to manage sensitive files and directories - Add Dockerfile.prod for production-ready Docker image - Add PRODUCTION_CHECKLIST.md for pre/post deployment steps - Add PRODUCTION_DEPLOYMENT.md for deployment instructions - Add STRIPE_SETUP.md for Stripe payment configuration - Add config/default.toml for default configuration settings - Add config/local.toml.example for local configuration template
19 lines
714 B
Plaintext
19 lines
714 B
Plaintext
# Local configuration template
|
|
# Copy this file to 'local.toml' and customize with your own keys
|
|
# This file should NOT be committed to version control
|
|
|
|
[server]
|
|
# host = "0.0.0.0" # Uncomment to bind to all interfaces
|
|
# port = 8080 # Uncomment to use different port
|
|
|
|
[stripe]
|
|
# Replace with your own Stripe test keys from https://dashboard.stripe.com/test/apikeys
|
|
# publishable_key = "pk_test_YOUR_PUBLISHABLE_KEY_HERE"
|
|
# secret_key = "sk_test_YOUR_SECRET_KEY_HERE"
|
|
# webhook_secret = "whsec_YOUR_WEBHOOK_SECRET_HERE"
|
|
|
|
# For production, use live keys:
|
|
# publishable_key = "pk_live_YOUR_LIVE_PUBLISHABLE_KEY"
|
|
# secret_key = "sk_live_YOUR_LIVE_SECRET_KEY"
|
|
# webhook_secret = "whsec_YOUR_LIVE_WEBHOOK_SECRET"
|