Skip to content
Snippets Groups Projects
.gitignore 859 B
Newer Older
  • Learn to ignore specific revisions
  • # filename patterns
    
    .*.swp
    .#*
    *.deb
    
    *.egg
    *.egg-info
    
    *.py[cod]
    
    Erik Johnston's avatar
    Erik Johnston committed
    *.tac
    
    _trial_temp/
    _trial_temp*/
    
    __pycache__/
    
    Erik Johnston's avatar
    Erik Johnston committed
    
    
    # We do want the poetry and cargo lockfile.
    
    !Cargo.lock
    
    # stuff that is likely to exist when you run a server locally
    
    /*.log.*
    
    /*.log.config
    /*.pid
    
    /*.signing.key
    
    /homeserver*.yaml
    
    /media_store/
    
    # For direnv users
    /.envrc
    
    # IDEs
    /.idea/
    /.ropeproject/
    /.vscode/
    
    # build products
    !/.coveragerc
    
    /.coverage*
    /.mypy_cache/
    
    /.tox-pg-container
    
    /build/
    /coverage.*
    /dist/
    /docs/build/
    /htmlcov
    /pip-wheel-metadata/
    
    
    # rust
    /target/
    /synapse/*.so
    
    # Poetry will create a setup.py, which we don't want to include.
    /setup.py
    
    
    # Don't include users' poetry configs
    /poetry.toml