rsdeps

Cargo.lock visualizer (mirror)
Log | Files | Refs | README | LICENSE

.containerignore (404B)


      1 # Git
      2 .git
      3 .gitignore
      4 
      5 # Python virtual environments & packages
      6 .venv
      7 venv
      8 ENV
      9 env
     10 *.egg-info
     11 .eggs
     12 
     13 # Python caches
     14 __pycache__/
     15 *.pyc
     16 *.pyo
     17 *.pyd
     18 .pytest_cache/
     19 .ruff_cache/
     20 .mypy_cache/
     21 
     22 # Local configuration & environment secrets
     23 .env
     24 *.env
     25 .secrets
     26 .idea/
     27 .vscode/
     28 
     29 # Build and CI artifacts
     30 build/
     31 dist/
     32 .github/
     33 .gitlab-ci.yml
     34 
     35 # UV specific local cache (if any exists outside container mount)
     36 .uv