feat: Add complete Docker deployment with web-based setup wizard

Major additions:
- Web-based setup wizard (setup.php, setup_wizard.php, setup-wizard.js)
- Production Docker configuration (docker-compose.prod.yml, .env.production)
- Database initialization SQL files (deploy/init_settings.sql)
- Template builder system with drag-and-drop UI
- Advanced features (OAuth, CDN, enhanced analytics, monetization)
- Comprehensive documentation (deployment guides, quick start, feature docs)
- Design system with accessibility and responsive layout
- Deployment automation scripts (deploy.ps1, generate-secrets.ps1)

Setup wizard allows customization of:
- Platform name and branding
- Domain configuration
- Membership tiers and pricing
- Admin credentials
- Feature toggles

Database includes 270+ tables for complete video streaming platform with
advanced features for analytics, moderation, template building, and monetization.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
SamiAhmed7777
2025-10-26 01:42:31 -07:00
parent 0b7e2d0a5b
commit d22b3e1c0d
90 changed files with 22329 additions and 268 deletions

View File

@@ -23,7 +23,7 @@ RewriteRule ^tokens/?$ f_modules/m_frontend/m_donations/token_purchase.php [L,QS
RewriteRule ^donate/?$ f_modules/m_frontend/m_donations/rainforest_donation_form.php [L,QSA]
RewriteRule ^donation/?$ f_modules/m_frontend/m_donations/rainforest_donation_form.php [L,QSA]
# Main Application Routes - Direct routing to index.php
# Main Application Routes - Route through index.php (which will use parser.php)
RewriteRule ^browse/?$ index.php [L,QSA]
RewriteRule ^videos/?$ index.php [L,QSA]
RewriteRule ^broadcasts/?$ index.php [L,QSA]
@@ -38,7 +38,7 @@ RewriteRule ^search/?$ index.php [L,QSA]
RewriteRule ^upload/?$ index.php [L,QSA]
RewriteRule ^view/([^/]+)/?$ index.php [L,QSA]
# User Account Routes - Direct routing to index.php
# User Account Routes - Route through index.php (which will use parser.php)
RewriteRule ^signin/?$ index.php [L,QSA]
RewriteRule ^signup/?$ index.php [L,QSA]
RewriteRule ^register/?$ index.php [L,QSA]