- Add single-admin login with SQLite3 user storage - First-run setup wizard for admin account creation - Account management page for password changes - Optional HTTPS with auto-generated self-signed certificates - Configurable via STEGASOO_AUTH_ENABLED, STEGASOO_HTTPS_ENABLED env vars - UI improvements: larger QR previews, consistent panel styling - Update docker-compose.yml with auth config and persistent volumes - Update all documentation for v4.0.2 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
76 lines
734 B
Plaintext
76 lines
734 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
ENV/
|
|
env/
|
|
|
|
# Old versions of code files.
|
|
old_files/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Backup files
|
|
*_old
|
|
*_old.*
|
|
*.bak
|
|
*.orig
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
|
|
# Type checking
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
*.log
|
|
|
|
# Distribution
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Output test files.
|
|
test_data/*.png
|
|
|
|
# Dev scripts (local convenience scripts)
|
|
build.sh
|
|
rbld_containers.sh
|
|
quick_web.sh
|
|
project_stats.sh
|
|
|
|
# Web UI auth database and SSL certs
|
|
frontends/web/instance/
|
|
frontends/web/certs/
|