No more browser warnings! mkcert creates locally-trusted certs. Pi Setup: - Auto-install mkcert during setup - Generate trusted certs when HTTPS enabled - Copy CA to /static/ca/rootCA.pem for easy device setup - New devices can download CA via HTTP and install it Docker: - docker-entrypoint.sh checks for mkcert, falls back to openssl - Shows instructions for CA distribution to other devices Scripts: - Added setup-trusted-certs.sh helper for local dev - Installs mkcert, generates certs, shows device setup instructions To trust on new devices: 1. Download: http://stegasoo.local/static/ca/rootCA.pem 2. Install as trusted CA in browser/OS 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
98 lines
1.1 KiB
Plaintext
98 lines
1.1 KiB
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.local
|
|
*.log
|
|
|
|
# Distribution
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Output test files.
|
|
test_data/*.png
|
|
|
|
# Dev scripts (local convenience scripts - except these)
|
|
scripts/*
|
|
!scripts/validate-release.sh
|
|
!scripts/smoke-test.sh
|
|
!scripts/setup-trusted-certs.sh
|
|
|
|
# Web UI auth database and SSL certs
|
|
instance/
|
|
frontends/web/instance/
|
|
frontends/web/certs/
|
|
|
|
# Tests (private)
|
|
tests/
|
|
|
|
# RPi image build artifacts
|
|
*.img
|
|
*.img.xz
|
|
*.img.zst
|
|
pishrink.sh
|
|
*.img.zst.zip
|
|
|
|
# Temp file storage
|
|
frontends/web/temp_files/
|
|
rpi/config.json
|
|
|
|
# Pre-built Pi tarballs and images (release assets, too large for git)
|
|
rpi/*.tar.zst
|
|
rpi/*.tar.zst.zip
|
|
rpi/*.img
|
|
rpi/*.img.zst
|
|
rpi/*.img.zst.zip
|