12345678910111213141516171819202122232425262728293031 |
- # tools, IDEs
- /.idea/
- /*.geany
- # build files and folders
- .cache/
- /.coverage
- /coverage.xml
- .sass-cache/
- /.tox/
- /build/
- /dist/
- /*.egg/
- /*.egg-info/
- /*.eggs/
- /docs/build/
- # test projects and data
- /manage.py
- /test_project_*/
- /tests/reports/
- # Django and Python
- /static/
- /media/
- __pycache__/
- *.py[cod]
- # Virtualenv magic, see https://gist.github.com/bittner/8830745
- .venv
|