Files
intercept/.dockerignore
Jon Ander Oribe 6da8b11301 Add login system with authentication and login page
Introduced a login system to restrict access to the application. Added session-based authentication in app.py, including login and logout routes, and a new login.html template for the login form. Updated .dockerignore to exclude .uv directory.
2026-01-11 14:06:55 +01:00

40 lines
306 B
Plaintext

# Git
.git
.gitignore
# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
.env
.venv
env/
venv/
.eggs/
*.egg-info/
*.egg
.uv
# IDE
.idea/
.vscode/
*.swp
*.swo
# Test/Dev
tests/
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
# Logs
*.log
# Captured files (don't include in image)
*.cap
*.pcap
*.csv