Skip to content
Snippets Groups Projects
.gitignore 424 B
Newer Older
  • Learn to ignore specific revisions
  • # filename patterns
    
    .*.swp
    .#*
    *.deb
    
    *.egg
    *.egg-info
    
    *.lock
    *.pyc
    
    Erik Johnston's avatar
    Erik Johnston committed
    *.tac
    
    _trial_temp/
    _trial_temp*/
    
    Erik Johnston's avatar
    Erik Johnston committed
    
    
    # stuff that is likely to exist when you run a server locally
    
    /*.db
    /*.log
    /*.log.config
    /*.pid
    
    /*.signing.key
    
    /env/
    /homeserver*.yaml
    
    /media_store/
    
    
    # IDEs
    /.idea/
    /.ropeproject/
    /.vscode/
    
    # build products
    /.coverage*
    !/.coveragerc
    /.tox
    /build/
    /coverage.*
    /dist/
    /docs/build/
    /htmlcov
    /pip-wheel-metadata/