From b6a89035302560505e5d804912895a5ae7321f06 Mon Sep 17 00:00:00 2001 From: Shankar Narayanan Date: Fri, 15 Dec 2017 16:12:18 -0500 Subject: Adding .gitignore to the repository Adding the .gitignore so that the seed-code commits can follow this. Issue-ID: OPTFRA-10 Change-Id: I708b60f6099554ab13a80367dcfcb094cfdd68a3 Signed-off-by: Shankar Narayanan --- .gitignore | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') 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/ -- cgit 1.2.3-korg