diff options
author | Shankar Narayanan <snarayanan@research.att.com> | 2017-12-15 16:12:18 -0500 |
---|---|---|
committer | Shankar Narayanan <snarayanan@research.att.com> | 2017-12-15 16:41:26 -0500 |
commit | b6a89035302560505e5d804912895a5ae7321f06 (patch) | |
tree | 82662389aedbca345a084b491031cdd4c721220a /.gitignore | |
parent | 15abbf4bf4bfd204cac504b68b5d3bfe89079c6b (diff) |
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 <snarayanan@research.att.com>
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/ |