Includes: API (Express/TypeScript), Astro site, Python workers, document generators, FCC compliance tools, Canada CRTC formation, Ansible infrastructure, and deployment scripts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
705 B
Python
21 lines
705 B
Python
app_name = "frappe_crypto"
|
|
app_title = "Crypto Payment Gateway"
|
|
app_publisher = "Performance West Inc."
|
|
app_description = "SHKeeper-based cryptocurrency payment gateway for ERPNext. Accepts BTC, ETH, USDC, USDT, MATIC, TRX, BNB, LTC, DOGE, and more."
|
|
app_email = "support@performancewest.net"
|
|
app_license = "MIT"
|
|
app_icon = "octicon octicon-shield-lock"
|
|
app_color = "#f7931a"
|
|
|
|
before_install = "frappe_crypto.install.before_install"
|
|
after_install = "frappe_crypto.install.after_install"
|
|
|
|
# SHKeeper webhook callback must bypass CSRF
|
|
website_route_rules = []
|
|
|
|
override_whitelisted_methods = {}
|
|
|
|
# Exempt the webhook endpoint from CSRF verification
|
|
csrf_ignore = [
|
|
"frappe_crypto.api.crypto_webhook",
|
|
]
|