Enki
69ee989a00
feat: Implement core BTCPay VPN provisioning flow - Add BTCPay Server integration with webhook handling - Implement payment processing and invoice creation - Add subscription management foundation - Add Ansible playbook execution on payment - Add basic frontend for subscription purchase - Implement success page redirection All core components tested and working together. Future work: admin interface, email integration, and monitoring.
56 lines
478 B
Plaintext
56 lines
478 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Environment variables
|
|
.env
|
|
.venv
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Ansible
|
|
*.retry
|
|
vault.yml
|
|
vault.yaml
|
|
|
|
# Operating System
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Application Data
|
|
data/subscriptions.json
|
|
data/*.json
|