pago/sample.env

41 lines
1.3 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 filename
WALLET_FILENAME='pago'
# Wallet password (Change this!)
WALLET_PASSWORD='6vzyEYNW0uGPuIx'
# Main wallet address (Change this!)
WALLET_ADDRESS='55bcxMRhBWea6xxsot8moF1rdPprjJR2x4mfnNnTGgBJFgXa4gWXmWAYdUBKiRcJxy9AUAGJEg28DejvWdJU2VgUDrUvCHG'
# Viewkey used for the wallet (Change this!)
WALLET_VIEWKEY='03d463f03ae547b11dfdf194a07ff82c14a3c6a3de559bd89c9a5e8dc5e9ae02'
# Set this to the blockheight of first transaction
WALLET_RESTORE_HEIGHT=573936
# Which wallet account to use for payments
WALLET_ACCOUNT_INDEX=1
# Wallet RPC
WALLET_RPC_URI='http://pago_wallet:18082'
# Interval to rescan for transactions
WALLET_REFRESH_SEC=1
# Interval to save wallet
# Disable autosave with 0
WALLET_REFRESH_SEC=10
# Public remote node
# Find one on https://monero.fail/
MONERO_DAEMON_HOST='xmr.gf4.pw:443'
MONERO_DAEMON_URI='https://xmr.gf4.pw'
# Local monero daemon (activate in docker-compose.override.yml)
#MONERO_DAEMON_URI='http://monerod'