Rohan Patel | f49bd1e | 2019-09-23 15:04:19 -0400 | [diff] [blame] | 1 | # Application-specific stuff
|
| 2 | files/
|
| 3 | temp/
|
| 4 | opt/cert/*.pem
|
| 5 | *.log
|
| 6 |
|
| 7 | envScript.sh
|
| 8 |
|
| 9 | # Created by https://www.gitignore.io/api/python,pycharm
|
| 10 | # Edit at https://www.gitignore.io/?templates=python,pycharm
|
| 11 |
|
| 12 | ### PyCharm ###
|
| 13 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
|
| 14 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
| 15 |
|
| 16 | # User-specific stuff
|
| 17 | .idea/**/workspace.xml
|
| 18 | .idea/**/tasks.xml
|
| 19 | .idea/**/usage.statistics.xml
|
| 20 | .idea/**/dictionaries
|
| 21 | .idea/**/shelf
|
| 22 |
|
| 23 | # Generated files
|
| 24 | .idea/**/contentModel.xml
|
| 25 |
|
| 26 | # Sensitive or high-churn files
|
| 27 | .idea/**/dataSources/
|
| 28 | .idea/**/dataSources.ids
|
| 29 | .idea/**/dataSources.local.xml
|
| 30 | .idea/**/sqlDataSources.xml
|
| 31 | .idea/**/dynamic.xml
|
| 32 | .idea/**/uiDesigner.xml
|
| 33 | .idea/**/dbnavigator.xml
|
| 34 |
|
| 35 | # Gradle
|
| 36 | .idea/**/gradle.xml
|
| 37 | .idea/**/libraries
|
| 38 |
|
| 39 | # Gradle and Maven with auto-import
|
| 40 | # When using Gradle or Maven with auto-import, you should exclude module files,
|
| 41 | # since they will be recreated, and may cause churn. Uncomment if using
|
| 42 | # auto-import.
|
| 43 | # .idea/modules.xml
|
| 44 | # .idea/*.iml
|
| 45 | # .idea/modules
|
| 46 |
|
| 47 | # CMake
|
| 48 | cmake-build-*/
|
| 49 |
|
| 50 | # Mongo Explorer plugin
|
| 51 | .idea/**/mongoSettings.xml
|
| 52 |
|
| 53 | # File-based project format
|
| 54 | *.iws
|
| 55 |
|
Rohan Patel | e19624e | 2019-11-11 16:30:46 -0500 | [diff] [blame] | 56 | # Copyright (c) 2019 AT&T Intellectual Property. #
|
| 57 | # #
|
| 58 | # Licensed under the Apache License, Version 2.0 (the "License"); #
|
| 59 | # you may not use this file except in compliance with the License. #
|
| 60 | # You may obtain a copy of the License at #
|
| 61 | # #
|
| 62 | # http://www.apache.org/licenses/LICENSE-2.0 #
|
| 63 | # #
|
| 64 | # Unless required by applicable law or agreed to in writing, software #
|
| 65 | # distributed under the License is distributed on an "AS IS" BASIS, #
|
| 66 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
|
| 67 | # See the License for the specific language governing permissions and #
|
| 68 | # limitations under the License. #
|
| 69 | ################################################################################
|
| 70 |
|
Rohan Patel | f49bd1e | 2019-09-23 15:04:19 -0400 | [diff] [blame] | 71 | # IntelliJ
|
| 72 | out/
|
| 73 |
|
| 74 | # mpeltonen/sbt-idea plugin
|
| 75 | .idea_modules/
|
| 76 |
|
| 77 | # JIRA plugin
|
| 78 | atlassian-ide-plugin.xml
|
| 79 |
|
| 80 | # Cursive Clojure plugin
|
| 81 | .idea/replstate.xml
|
| 82 |
|
| 83 | # Crashlytics plugin (for Android Studio and IntelliJ)
|
| 84 | com_crashlytics_export_strings.xml
|
| 85 | crashlytics.properties
|
| 86 | crashlytics-build.properties
|
| 87 | fabric.properties
|
| 88 |
|
| 89 | # Editor-based Rest Client
|
| 90 | .idea/httpRequests
|
| 91 |
|
| 92 | # Android studio 3.1+ serialized cache file
|
| 93 | .idea/caches/build_file_checksums.ser
|
| 94 |
|
| 95 | ### PyCharm Patch ###
|
| 96 | # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
| 97 |
|
| 98 | # *.iml
|
| 99 | # modules.xml
|
| 100 | # .idea/misc.xml
|
| 101 | # *.ipr
|
| 102 |
|
| 103 | # Sonarlint plugin
|
| 104 | .idea/sonarlint
|
| 105 |
|
| 106 | ### Python ###
|
| 107 | # Byte-compiled / optimized / DLL files
|
| 108 | __pycache__/
|
| 109 | *.py[cod]
|
| 110 | *$py.class
|
| 111 |
|
| 112 | # C extensions
|
| 113 | *.so
|
| 114 |
|
| 115 | # Distribution / packaging
|
| 116 | .Python
|
| 117 | build/
|
| 118 | develop-eggs/
|
| 119 | dist/
|
| 120 | downloads/
|
| 121 | eggs/
|
| 122 | .eggs/
|
| 123 | lib/
|
| 124 | lib64/
|
| 125 | parts/
|
| 126 | sdist/
|
| 127 | var/
|
| 128 | wheels/
|
| 129 | share/python-wheels/
|
| 130 | *.egg-info/
|
| 131 | .installed.cfg
|
| 132 | *.egg
|
| 133 | MANIFEST
|
| 134 |
|
| 135 | # PyInstaller
|
| 136 | # Usually these files are written by a python script from a template
|
| 137 | # before PyInstaller builds the exe, so as to inject date/other infos into it.
|
| 138 | *.manifest
|
| 139 | *.spec
|
| 140 |
|
| 141 | # Installer logs
|
| 142 | pip-log.txt
|
| 143 | pip-delete-this-directory.txt
|
| 144 |
|
| 145 | # Unit test / coverage reports
|
| 146 | htmlcov/
|
| 147 | .tox/
|
| 148 | .nox/
|
| 149 | .coverage
|
| 150 | .coverage.*
|
| 151 | .cache
|
| 152 | nosetests.xml
|
| 153 | coverage.xml
|
| 154 | *.cover
|
| 155 | .hypothesis/
|
| 156 | .pytest_cache/
|
| 157 |
|
| 158 | # Translations
|
| 159 | *.mo
|
| 160 | *.pot
|
| 161 |
|
| 162 | # Django stuff:
|
| 163 | *.log
|
| 164 | local_settings.py
|
| 165 | db.sqlite3
|
| 166 |
|
| 167 | # Flask stuff:
|
| 168 | instance/
|
| 169 | .webassets-cache
|
| 170 |
|
| 171 | # Scrapy stuff:
|
| 172 | .scrapy
|
| 173 |
|
| 174 | # Sphinx documentation
|
| 175 | docs/_build/
|
| 176 |
|
| 177 | # PyBuilder
|
| 178 | target/
|
| 179 |
|
| 180 | # Jupyter Notebook
|
| 181 | .ipynb_checkpoints
|
| 182 |
|
| 183 | # IPython
|
| 184 | profile_default/
|
| 185 | ipython_config.py
|
| 186 |
|
| 187 | # pyenv
|
| 188 | .python-version
|
| 189 |
|
| 190 | # celery beat schedule file
|
| 191 | celerybeat-schedule
|
| 192 |
|
| 193 | # SageMath parsed files
|
| 194 | *.sage.py
|
| 195 |
|
| 196 | # Environments
|
| 197 | .env
|
| 198 | .venv
|
| 199 | env/
|
| 200 | venv/
|
| 201 | ENV/
|
| 202 | env.bak/
|
| 203 | venv.bak/
|
| 204 |
|
| 205 | # Spyder project settings
|
| 206 | .spyderproject
|
| 207 | .spyproject
|
| 208 |
|
| 209 | # Rope project settings
|
| 210 | .ropeproject
|
| 211 |
|
| 212 | # mkdocs documentation
|
| 213 | /site
|
| 214 |
|
| 215 | # mypy
|
| 216 | .mypy_cache/
|
| 217 | .dmypy.json
|
| 218 | dmypy.json
|
| 219 |
|
| 220 | # Pyre type checker
|
| 221 | .pyre/
|
| 222 |
|
| 223 | ### Python Patch ###
|
| 224 | .venv/
|
| 225 |
|
| 226 | # End of https://www.gitignore.io/api/python,pycharm
|