- add ansible playbooks and roles for deploying taler exchange and merchant
- configure PostgreSQL, GNU Taler repositories, and services
🔧 chore(config): provide example env and gitignore for sensitive files
- create .env-example with placeholders for sensitive info
- add .gitignore entries for .env and common editor files
31 lines
931 B
YAML
31 lines
931 B
YAML
---
|
|
# Default values that can be overridden via .env
|
|
taler_defaults:
|
|
TALER_DOMAIN: demogeld.example
|
|
TALER_ADMIN_EMAIL: ops@demogeld.example
|
|
LETSENCRYPT_CONTACT: mailto:ops@demogeld.example
|
|
TALER_PACKAGE_REPO: https://deb.taler.net/
|
|
TALER_DISTRIBUTION: stable
|
|
TALER_CURRENCY: DEMOGELD
|
|
|
|
TALER_DB_HOST: localhost
|
|
TALER_DB_PORT: "5432"
|
|
TALER_DB_ADMIN_USER: postgres
|
|
TALER_DB_ADMIN_PASSWORD: ""
|
|
TALER_EXCHANGE_DB: talerexchange
|
|
TALER_EXCHANGE_DB_USER: taler_exchange
|
|
TALER_EXCHANGE_DB_PASSWORD: ""
|
|
TALER_MERCHANT_DB: talermerchant
|
|
TALER_MERCHANT_DB_USER: taler_merchant
|
|
TALER_MERCHANT_DB_PASSWORD: ""
|
|
|
|
TALER_EXCHANGE_HOST: exchange.demogeld.example
|
|
TALER_MERCHANT_HOST: merchant.demogeld.example
|
|
TALER_PAY_HOST: pay.demogeld.example
|
|
WORDPRESS_HOST: www.demogeld.example
|
|
|
|
WORDPRESS_DB_NAME: wp_demogeld
|
|
WORDPRESS_DB_USER: wp_demogeld
|
|
WORDPRESS_DB_PASSWORD: ""
|
|
|
|
TALER_MASTER_PUBLIC_KEY: ""
|