mirror of
https://github.com/smittix/intercept.git
synced 2026-04-25 07:10:00 -07:00
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.
40 lines
306 B
Plaintext
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
|