Skip to content
Snippets Groups Projects
.gitignore 449 B
Newer Older
  • Learn to ignore specific revisions
  • # python specific
    *.DS_Store
    *.egg-info
    *.pot
    *.py[co]
    .tox/
    __pycache__
    MANIFEST
    .coverage
    cache/
    .mypy_cache/
    
    # Django specific
    dist/
    docs/_build/
    docs/locale/
    tests/coverage_html/
    tests/.coverage
    build/
    tests/report/
    *.sqlite3
    static/
    
    # project specific
    env-grady/
    env/
    
    Jan Maximilian Michal's avatar
    Jan Maximilian Michal committed
    .venv/
    
    robinwilliam.hundt's avatar
    robinwilliam.hundt committed
    public/
    
    geckodriver.log