new-site/frappe_crypto/frappe_crypto/hooks.py
justin f8cd37ac8c Initial commit — Performance West telecom compliance platform
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>
2026-04-27 06:54:22 -05:00

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",
]