pago/sample.env

43 lines
1.5 KiB
Bash

# Staging or production
ENVIRONMENT='staging'
#ENVIRONMENT='prod'
# Timezone as region/City, i.e. America/Denver
TIMEZONE='UTC'
## Email ##
MAIL_DOMAIN='example.com'
MAIL_FROM='noreply@example.com'
# Currently this is set to the smtp container in docker-compose
MAIL_HOST='smtp'
# https://nodemailer.com/smtp/
MAIL_URI="smtp://${MAIL_HOST}:2500"
## Monero ##
# Wallet password (Change this!)
WALLET_PASSWORD='6vzyEYNW0uGPuIx'
# Main wallet address (Change this!)
WALLET_ADDRESS='49YQ71oTRA4Vm5t3nfJH3R9CSf99ofbcf8TJPdNvv7rZZSCLvas7vo1W8knBjWcKf7aQiefSgWb4wH6TXurEcD8JUnJxfsZ'
# Viewkey used for the wallet (Change this!)
WALLET_VIEWKEY='a23474fe2d3ef001b7f0d311d7bb10eb149bbf9c0e206f7f31cc91ab58781809'
# Set this to the blockheight of first transaction
WALLET_RESTORE_HEIGHT=3133069
# Which wallet account to use for payments
WALLET_ACCOUNT_INDEX=1
# "Recipient" name that payers will see in their wallet history
# Change this to the name of your organization
PAYMENT_RECIPIENT='Sample company (www.example.com)'
# Wallet filename
WALLET_FILENAME='pago'
# Wallet RPC
WALLET_RPC_URI='http://pago_wallet:18082'
# Interval to rescan for transactions
WALLET_REFRESH_SEC=1
# Interval to save wallet (disable with 0)
WALLET_REFRESH_SEC=10
# Public remote node (pick one from https://monero.fail/)
MONERO_DAEMON_HOST='xmr.gf4.pw:443'
# Same as above, different format
MONERO_DAEMON_URI='https://xmr.gf4.pw'
# Local node (activate in docker-compose.override.yml)
#MONERO_DAEMON_URI='http://monerod'