Skip to content

Commit fe09133

Browse files
author
Kollivakkam Raghavan
committed
Initial commit
0 parents  commit fe09133

15 files changed

+1198
-0
lines changed

.gitignore

Lines changed: 275 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,275 @@
1+
2+
3+
### Python template
4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
*$py.class
8+
9+
# C extensions
10+
*.so
11+
12+
# Distribution / packaging
13+
.Python
14+
build/
15+
develop-eggs/
16+
dist/
17+
downloads/
18+
eggs/
19+
.eggs/
20+
lib/
21+
lib64/
22+
parts/
23+
sdist/
24+
var/
25+
wheels/
26+
*.egg-info/
27+
.installed.cfg
28+
*.egg
29+
MANIFEST
30+
31+
# PyInstaller
32+
# Usually these files are written by a python script from a template
33+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
34+
*.manifest
35+
*.spec
36+
37+
# Installer logs
38+
pip-log.txt
39+
pip-delete-this-directory.txt
40+
41+
# Unit test / coverage reports
42+
htmlcov/
43+
.tox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
.hypothesis/
51+
.pytest_cache/
52+
53+
# Translations
54+
*.mo
55+
*.pot
56+
57+
# Django stuff:
58+
*.log
59+
local_settings.py
60+
db.sqlite3
61+
62+
# Flask stuff:
63+
instance/
64+
.webassets-cache
65+
66+
# Scrapy stuff:
67+
.scrapy
68+
69+
# Sphinx documentation
70+
docs/_build/
71+
72+
# PyBuilder
73+
target/
74+
75+
# Jupyter Notebook
76+
.ipynb_checkpoints
77+
78+
# pyenv
79+
.python-version
80+
81+
# celery beat schedule file
82+
celerybeat-schedule
83+
84+
# SageMath parsed files
85+
*.sage.py
86+
87+
# Environments
88+
.env
89+
.venv
90+
env/
91+
venv/
92+
ENV/
93+
env.bak/
94+
venv.bak/
95+
96+
# Spyder project settings
97+
.spyderproject
98+
.spyproject
99+
100+
# Rope project settings
101+
.ropeproject
102+
103+
# mkdocs documentation
104+
/site
105+
106+
# mypy
107+
.mypy_cache/
108+
### Eclipse template
109+
110+
.metadata
111+
bin/
112+
tmp/
113+
*.tmp
114+
*.bak
115+
*.swp
116+
*~.nib
117+
local.properties
118+
.settings/
119+
.loadpath
120+
.recommenders
121+
122+
# External tool builders
123+
.externalToolBuilders/
124+
125+
# Locally stored "Eclipse launch configurations"
126+
*.launch
127+
128+
# PyDev specific (Python IDE for Eclipse)
129+
*.pydevproject
130+
131+
# CDT-specific (C/C++ Development Tooling)
132+
.cproject
133+
134+
# CDT- autotools
135+
.autotools
136+
137+
# Java annotation processor (APT)
138+
.factorypath
139+
140+
# PDT-specific (PHP Development Tools)
141+
.buildpath
142+
143+
# sbteclipse plugin
144+
.target
145+
146+
# Tern plugin
147+
.tern-project
148+
149+
# TeXlipse plugin
150+
.texlipse
151+
152+
# STS (Spring Tool Suite)
153+
.springBeans
154+
155+
# Code Recommenders
156+
.recommenders/
157+
158+
# Scala IDE specific (Scala & Java development for Eclipse)
159+
.cache-main
160+
.scala_dependencies
161+
.worksheet
162+
### NetBeans template
163+
nbproject/private/
164+
build/
165+
nbbuild/
166+
dist/
167+
nbdist/
168+
.nb-gradle/
169+
### JetBrains template
170+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
171+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
172+
173+
# User-specific stuff
174+
*.iml
175+
.idea/**
176+
.idea/**/workspace.xml
177+
.idea/**/tasks.xml
178+
.idea/**/dictionaries
179+
.idea/**/shelf
180+
181+
# Sensitive or high-churn files
182+
.idea/**/dataSources/
183+
.idea/**/dataSources.ids
184+
.idea/**/dataSources.local.xml
185+
.idea/**/sqlDataSources.xml
186+
.idea/**/dynamic.xml
187+
.idea/**/uiDesigner.xml
188+
.idea/**/dbnavigator.xml
189+
190+
# Gradle
191+
.idea/**/gradle.xml
192+
.idea/**/libraries
193+
194+
# CMake
195+
cmake-build-debug/
196+
cmake-build-release/
197+
198+
# Mongo Explorer plugin
199+
.idea/**/mongoSettings.xml
200+
201+
# File-based project format
202+
*.iws
203+
204+
# IntelliJ
205+
out/
206+
207+
# mpeltonen/sbt-idea plugin
208+
.idea_modules/
209+
210+
# JIRA plugin
211+
atlassian-ide-plugin.xml
212+
213+
# Cursive Clojure plugin
214+
.idea/replstate.xml
215+
216+
# Crashlytics plugin (for Android Studio and IntelliJ)
217+
com_crashlytics_export_strings.xml
218+
crashlytics.properties
219+
crashlytics-build.properties
220+
fabric.properties
221+
222+
# Editor-based Rest Client
223+
.idea/httpRequests
224+
### Java template
225+
# Compiled class file
226+
*.class
227+
228+
# Log file
229+
*.log
230+
231+
# BlueJ files
232+
*.ctxt
233+
234+
# Mobile Tools for Java (J2ME)
235+
.mtj.tmp/
236+
237+
# Package Files #
238+
*.jar
239+
*.war
240+
*.nar
241+
*.ear
242+
*.zip
243+
*.tar.gz
244+
*.rar
245+
246+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
247+
hs_err_pid*
248+
### macOS template
249+
# General
250+
.DS_Store
251+
.AppleDouble
252+
.LSOverride
253+
254+
# Icon must end with two \r
255+
Icon
256+
257+
# Thumbnails
258+
._*
259+
260+
# Files that might appear in the root of a volume
261+
.DocumentRevisions-V100
262+
.fseventsd
263+
.Spotlight-V100
264+
.TemporaryItems
265+
.Trashes
266+
.VolumeIcon.icns
267+
.com.apple.timemachine.donotpresent
268+
269+
# Directories potentially created on remote AFP share
270+
.AppleDB
271+
.AppleDesktop
272+
Network Trash Folder
273+
Temporary Items
274+
.apdisk
275+

0 commit comments

Comments
 (0)