diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d254823 --- /dev/null +++ b/.gitignore @@ -0,0 +1,102 @@ +# MacOS +.DS_Store + +# IDEA / IDE +.idea/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +AUTHORS +ChangeLog +env/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.eggs/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.testrepository/ +.tox/ +.coverage +cover/ +dist/ +conductor/doc/build +conductor/doc/source/api/ +conductor/conductor/etc/conductor/conductor.conf +conductor/etc/conductor/*.sample +conductor/conductor/common/music/voting.py +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +#ignore thumbnails created by windows +Thumbs.db +#Ignore files build by Visual Studio +*.obj +*.exe +*.pdb +*.user +*.aps +*.pch +*.vspscc +*_i.c +*_p.c +*.ncb +*.suo +*.tlb +*.tlh +*.bak +*.cache +*.ilk +[Bb]in +[Dd]ebug*/ +*.lib +*.sbr +obj/ +[Rr]elease*/ +_ReSharper*/ +[Tt]est[Rr]esult* + +# FIXME: Put all paths to temporarily hide under here. +# This must be considered temporary and is to be cleaned out! +conductor/api/extra/ |