Skip to content

Commit 9cc6944

Browse files
committed
initial commit
0 parents  commit 9cc6944

1 file changed

Lines changed: 109 additions & 0 deletions

File tree

.gitignore

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
*/.DS_Store
2+
.DS_Store
3+
4+
# App's temp files
5+
app/static/files/*
6+
(*/.DS_Store
7+
8+
# Byte-compiled / optimized / DLL files
9+
__pycache__/
10+
*.py[cod]
11+
12+
# C extensions
13+
*.so
14+
15+
# Distribution / packaging
16+
.Python
17+
env/
18+
build/
19+
develop-eggs/
20+
dist/
21+
downloads/
22+
eggs/
23+
.eggs/
24+
lib/
25+
lib64/
26+
parts/
27+
sdist/
28+
var/
29+
*.egg-info/
30+
.installed.cfg
31+
*.egg
32+
33+
# PyInstaller
34+
# Usually these files are written by a python script from a template
35+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
36+
*.manifest
37+
*.spec
38+
39+
# Installer logs
40+
pip-log.txt
41+
pip-delete-this-directory.txt
42+
43+
# Unit test / coverage reports
44+
htmlcov/
45+
.tox/
46+
.coverage
47+
.coverage.*
48+
.cache
49+
nosetests.xml
50+
coverage.xml
51+
*,cover
52+
53+
# Translations
54+
*.mo
55+
*.pot
56+
57+
# Django stuff:
58+
*.log
59+
60+
# Sphinx documentation
61+
docs/_build/
62+
63+
# PyBuilder
64+
target/
65+
66+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
67+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
68+
69+
# User-specific stuff:
70+
.idea/workspace.xml
71+
.idea/tasks.xml
72+
.idea/dictionaries
73+
.idea/vcs.xml
74+
.idea/jsLibraryMappings.xml
75+
76+
# Sensitive or high-churn files:
77+
.idea/dataSources.ids
78+
.idea/dataSources.xml
79+
.idea/dataSources.local.xml
80+
.idea/sqlDataSources.xml
81+
.idea/dynamic.xml
82+
.idea/uiDesigner.xml
83+
84+
# Gradle:
85+
.idea/gradle.xml
86+
.idea/libraries
87+
88+
# Mongo Explorer plugin:
89+
.idea/mongoSettings.xml
90+
91+
## File-based project format:
92+
*.iws
93+
94+
## Plugin-specific files:
95+
96+
# IntelliJ
97+
/out/
98+
99+
# mpeltonen/sbt-idea plugin
100+
.idea_modules/
101+
102+
# JIRA plugin
103+
atlassian-ide-plugin.xml
104+
105+
# Crashlytics plugin (for Android Studio and IntelliJ)
106+
com_crashlytics_export_strings.xml
107+
crashlytics.properties
108+
crashlytics-build.properties
109+
fabric.properties

0 commit comments

Comments
 (0)