Files
qr-code_manager/app/utils/__init__.py
ske087 264a81652a Production deployment fixes and enhancements
- Added environment variable loading with python-dotenv
- Fixed Docker session permissions by using /tmp directory
- Updated .dockerignore to include .env file properly
- Enhanced docker-compose.yml with env_file directive
- Fixed Gunicorn configuration for Docker compatibility
- Updated README.md with comprehensive deployment docs
- Cleaned up debug logging from API routes
- Added DOMAIN_SETUP.md for reverse proxy guidance
- All production issues resolved and tested working
- Application now accessible at qr.moto-adv.com
2025-07-16 17:49:10 -04:00

21 lines
488 B
Python
Executable File

"""
Utility modules for QR Code Manager
"""
from .auth import init_admin, login_required, verify_password, get_admin_credentials
from .qr_generator import QRCodeGenerator
from .link_manager import LinkPageManager
from .data_manager import QRDataManager
from .url_shortener import URLShortener
__all__ = [
'init_admin',
'login_required',
'verify_password',
'get_admin_credentials',
'QRCodeGenerator',
'LinkPageManager',
'QRDataManager',
'URLShortener'
]