Skip to content

Commit 3fc6c2b

Browse files
committed
SN-612 First commit
0 parents  commit 3fc6c2b

File tree

2 files changed

+274
-0
lines changed

2 files changed

+274
-0
lines changed

.gitignore

Lines changed: 274 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,274 @@
1+
2+
# Created by https://www.gitignore.io/api/linux,macos,python,windows,intellij+iml
3+
# Edit at https://www.gitignore.io/?templates=linux,macos,python,windows,intellij+iml
4+
5+
### Intellij+iml ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/**/workspace.xml
11+
.idea/**/tasks.xml
12+
.idea/**/usage.statistics.xml
13+
.idea/**/dictionaries
14+
.idea/**/shelf
15+
16+
# Generated files
17+
.idea/**/contentModel.xml
18+
19+
# Sensitive or high-churn files
20+
.idea/**/dataSources/
21+
.idea/**/dataSources.ids
22+
.idea/**/dataSources.local.xml
23+
.idea/**/sqlDataSources.xml
24+
.idea/**/dynamic.xml
25+
.idea/**/uiDesigner.xml
26+
.idea/**/dbnavigator.xml
27+
28+
# Gradle
29+
.idea/**/gradle.xml
30+
.idea/**/libraries
31+
32+
# .idea/modules.xml
33+
.idea/**
34+
# .idea/modules
35+
# *.iml
36+
# *.ipr
37+
38+
# CMake
39+
cmake-build-*/
40+
41+
# Mongo Explorer plugin
42+
.idea/**/mongoSettings.xml
43+
44+
# File-based project format
45+
*.iws
46+
47+
# IntelliJ
48+
out/
49+
50+
# mpeltonen/sbt-idea plugin
51+
.idea_modules/
52+
53+
# JIRA plugin
54+
atlassian-ide-plugin.xml
55+
56+
# Cursive Clojure plugin
57+
.idea/replstate.xml
58+
59+
# Crashlytics plugin (for Android Studio and IntelliJ)
60+
com_crashlytics_export_strings.xml
61+
crashlytics.properties
62+
crashlytics-build.properties
63+
fabric.properties
64+
65+
# Editor-based Rest Client
66+
.idea/httpRequests
67+
68+
# Android studio 3.1+ serialized cache file
69+
.idea/caches/build_file_checksums.ser
70+
71+
### Intellij+iml Patch ###
72+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
73+
74+
*.iml
75+
modules.xml
76+
.idea/misc.xml
77+
*.ipr
78+
79+
### Linux ###
80+
*~
81+
82+
# temporary files which can be created if a process still has a handle open of a deleted file
83+
.fuse_hidden*
84+
85+
# KDE directory preferences
86+
.directory
87+
88+
# Linux trash folder which might appear on any partition or disk
89+
.Trash-*
90+
91+
# .nfs files are created when an open file is removed but is still being accessed
92+
.nfs*
93+
94+
### macOS ###
95+
# General
96+
.DS_Store
97+
.AppleDouble
98+
.LSOverride
99+
100+
# Icon must end with two \r
101+
Icon
102+
103+
# Thumbnails
104+
._*
105+
106+
# Files that might appear in the root of a volume
107+
.DocumentRevisions-V100
108+
.fseventsd
109+
.Spotlight-V100
110+
.TemporaryItems
111+
.Trashes
112+
.VolumeIcon.icns
113+
.com.apple.timemachine.donotpresent
114+
115+
# Directories potentially created on remote AFP share
116+
.AppleDB
117+
.AppleDesktop
118+
Network Trash Folder
119+
Temporary Items
120+
.apdisk
121+
122+
### Python ###
123+
# Byte-compiled / optimized / DLL files
124+
__pycache__/
125+
*.py[cod]
126+
*$py.class
127+
128+
# C extensions
129+
*.so
130+
131+
# Distribution / packaging
132+
.Python
133+
build/
134+
develop-eggs/
135+
dist/
136+
downloads/
137+
eggs/
138+
.eggs/
139+
lib/
140+
lib64/
141+
parts/
142+
sdist/
143+
var/
144+
wheels/
145+
pip-wheel-metadata/
146+
share/python-wheels/
147+
*.egg-info/
148+
.installed.cfg
149+
*.egg
150+
MANIFEST
151+
152+
# PyInstaller
153+
# Usually these files are written by a python script from a template
154+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
155+
*.manifest
156+
*.spec
157+
158+
# Installer logs
159+
pip-log.txt
160+
pip-delete-this-directory.txt
161+
162+
# Unit test / coverage reports
163+
htmlcov/
164+
.tox/
165+
.nox/
166+
.coverage
167+
.coverage.*
168+
.cache
169+
nosetests.xml
170+
coverage.xml
171+
*.cover
172+
.hypothesis/
173+
.pytest_cache/
174+
175+
# Translations
176+
*.mo
177+
*.pot
178+
179+
# Django stuff:
180+
*.log
181+
local_settings.py
182+
db.sqlite3
183+
db.sqlite3-journal
184+
185+
# Flask stuff:
186+
instance/
187+
.webassets-cache
188+
189+
# Scrapy stuff:
190+
.scrapy
191+
192+
# Sphinx documentation
193+
docs/_build/
194+
195+
# PyBuilder
196+
target/
197+
198+
# Jupyter Notebook
199+
.ipynb_checkpoints
200+
201+
# IPython
202+
profile_default/
203+
ipython_config.py
204+
205+
# pyenv
206+
.python-version
207+
208+
# pipenv
209+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
210+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
211+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
212+
# install all needed dependencies.
213+
#Pipfile.lock
214+
215+
# celery beat schedule file
216+
celerybeat-schedule
217+
218+
# SageMath parsed files
219+
*.sage.py
220+
221+
# Environments
222+
.env
223+
.venv
224+
env/
225+
venv/
226+
ENV/
227+
env.bak/
228+
venv.bak/
229+
230+
# Spyder project settings
231+
.spyderproject
232+
.spyproject
233+
234+
# Rope project settings
235+
.ropeproject
236+
237+
# mkdocs documentation
238+
/site
239+
240+
# mypy
241+
.mypy_cache/
242+
.dmypy.json
243+
dmypy.json
244+
245+
# Pyre type checker
246+
.pyre/
247+
248+
### Windows ###
249+
# Windows thumbnail cache files
250+
Thumbs.db
251+
Thumbs.db:encryptable
252+
ehthumbs.db
253+
ehthumbs_vista.db
254+
255+
# Dump file
256+
*.stackdump
257+
258+
# Folder config file
259+
[Dd]esktop.ini
260+
261+
# Recycle Bin used on file shares
262+
$RECYCLE.BIN/
263+
264+
# Windows Installer files
265+
*.cab
266+
*.msi
267+
*.msix
268+
*.msm
269+
*.msp
270+
271+
# Windows shortcuts
272+
*.lnk
273+
274+
# End of https://www.gitignore.io/api/linux,macos,python,windows,intellij+iml

securenative/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)