.gitignore 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. # Created by https://www.gitignore.io, modified for use with CodeRed CMS.
  2. #######################################
  3. ### Editors
  4. #######################################
  5. ### Emacs ###
  6. # -*- mode: gitignore; -*-
  7. *~
  8. \#*\#
  9. /.emacs.desktop
  10. /.emacs.desktop.lock
  11. *.elc
  12. auto-save-list
  13. tramp
  14. .\#*
  15. # Org-mode
  16. .org-id-locations
  17. *_archive
  18. # flymake-mode
  19. *_flymake.*
  20. # eshell files
  21. /eshell/history
  22. /eshell/lastdir
  23. # elpa packages
  24. /elpa/
  25. # reftex files
  26. *.rel
  27. # Flycheck
  28. flycheck_*.el
  29. # server auth directory
  30. /server/
  31. # projectiles files
  32. .projectile
  33. # directory configuration
  34. .dir-locals.el
  35. # network security
  36. /network-security.data
  37. ### KomodoEdit ###
  38. *.komodoproject
  39. .komodotools
  40. ### PyCharm ###
  41. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  42. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  43. # User-specific stuff
  44. .idea/**/workspace.xml
  45. .idea/**/tasks.xml
  46. .idea/**/usage.statistics.xml
  47. .idea/**/dictionaries
  48. .idea/**/shelf
  49. # Generated files
  50. .idea/**/contentModel.xml
  51. # Sensitive or high-churn files
  52. .idea/**/dataSources/
  53. .idea/**/dataSources.ids
  54. .idea/**/dataSources.local.xml
  55. .idea/**/sqlDataSources.xml
  56. .idea/**/dynamic.xml
  57. .idea/**/uiDesigner.xml
  58. .idea/**/dbnavigator.xml
  59. # Gradle
  60. .idea/**/gradle.xml
  61. .idea/**/libraries
  62. # Mongo Explorer plugin
  63. .idea/**/mongoSettings.xml
  64. # File-based project format
  65. *.iws
  66. # IntelliJ
  67. out/
  68. # mpeltonen/sbt-idea plugin
  69. .idea_modules/
  70. # JIRA plugin
  71. atlassian-ide-plugin.xml
  72. # Cursive Clojure plugin
  73. .idea/replstate.xml
  74. # Crashlytics plugin (for Android Studio and IntelliJ)
  75. com_crashlytics_export_strings.xml
  76. crashlytics.properties
  77. crashlytics-build.properties
  78. fabric.properties
  79. # Editor-based Rest Client
  80. .idea/httpRequests
  81. # Sonarlint plugin
  82. .idea/sonarlint
  83. ### SublimeText ###
  84. # Cache files for Sublime Text
  85. *.tmlanguage.cache
  86. *.tmPreferences.cache
  87. *.stTheme.cache
  88. # Workspace files are user-specific
  89. *.sublime-workspace
  90. # Project files should be checked into the repository, unless a significant
  91. # proportion of contributors will probably not be using Sublime Text
  92. # *.sublime-project
  93. # SFTP configuration file
  94. sftp-config.json
  95. # Package control specific files
  96. Package Control.last-run
  97. Package Control.ca-list
  98. Package Control.ca-bundle
  99. Package Control.system-ca-bundle
  100. Package Control.cache/
  101. Package Control.ca-certs/
  102. Package Control.merged-ca-bundle
  103. Package Control.user-ca-bundle
  104. oscrypto-ca-bundle.crt
  105. bh_unicode_properties.cache
  106. # Sublime-github package stores a github token in this file
  107. # https://packagecontrol.io/packages/sublime-github
  108. GitHub.sublime-settings
  109. ### TextMate ###
  110. *.tmproj
  111. *.tmproject
  112. tmtags
  113. ### Vim ###
  114. # Swap
  115. [._]*.s[a-v][a-z]
  116. [._]*.sw[a-p]
  117. [._]s[a-rt-v][a-z]
  118. [._]ss[a-gi-z]
  119. [._]sw[a-p]
  120. # Session
  121. Session.vim
  122. # Temporary
  123. .netrwhist
  124. # Auto-generated tag files
  125. tags
  126. # Persistent undo
  127. [._]*.un~
  128. ### VisualStudioCode ###
  129. .vscode/
  130. ### VisualStudioCode Patch ###
  131. # Ignore all local history of files
  132. .history
  133. #######################################
  134. ### Django/Python Stack
  135. #######################################
  136. ### Django ###
  137. *.log
  138. *.pot
  139. *.pyc
  140. __pycache__/
  141. local_settings.py
  142. db.sqlite3
  143. # If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
  144. # in your Git repository. Update and uncomment the following line accordingly.
  145. # <django-project-name>/staticfiles/
  146. ### Django.Python Stack ###
  147. # Byte-compiled / optimized / DLL files
  148. *.py[cod]
  149. *$py.class
  150. # C extensions
  151. *.so
  152. # Distribution / packaging
  153. .Python
  154. build/
  155. develop-eggs/
  156. dist/
  157. downloads/
  158. eggs/
  159. .eggs/
  160. lib/
  161. lib64/
  162. parts/
  163. sdist/
  164. var/
  165. wheels/
  166. share/python-wheels/
  167. *.egg-info/
  168. .installed.cfg
  169. *.egg
  170. MANIFEST
  171. # PyInstaller
  172. # Usually these files are written by a python script from a template
  173. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  174. *.manifest
  175. *.spec
  176. # Installer logs
  177. pip-log.txt
  178. pip-delete-this-directory.txt
  179. # Unit test / coverage reports
  180. htmlcov/
  181. .tox/
  182. .nox/
  183. .coverage
  184. .coverage.*
  185. .cache
  186. nosetests.xml
  187. coverage.xml
  188. *.cover
  189. .hypothesis/
  190. .pytest_cache/
  191. # Translations
  192. *.mo
  193. # Flask stuff:
  194. instance/
  195. .webassets-cache
  196. # Scrapy stuff:
  197. .scrapy
  198. # Sphinx documentation
  199. docs/_build/
  200. # PyBuilder
  201. target/
  202. # Jupyter Notebook
  203. .ipynb_checkpoints
  204. # IPython
  205. profile_default/
  206. ipython_config.py
  207. # pyenv
  208. .python-version
  209. # celery beat schedule file
  210. celerybeat-schedule
  211. # SageMath parsed files
  212. *.sage.py
  213. # Environments
  214. .env
  215. .venv
  216. env/
  217. venv/
  218. ENV/
  219. env.bak/
  220. venv.bak/
  221. # Spyder project settings
  222. .spyderproject
  223. .spyproject
  224. # Rope project settings
  225. .ropeproject
  226. # mkdocs documentation
  227. /site
  228. # mypy
  229. .mypy_cache/
  230. .dmypy.json
  231. dmypy.json
  232. # Pyre type checker
  233. .pyre/
  234. ### OSX ###
  235. # General
  236. .DS_Store
  237. .AppleDouble
  238. .LSOverride
  239. # Icon must end with two \r
  240. Icon
  241. # Thumbnails
  242. ._*
  243. # Files that might appear in the root of a volume
  244. .DocumentRevisions-V100
  245. .fseventsd
  246. .Spotlight-V100
  247. .TemporaryItems
  248. .Trashes
  249. .VolumeIcon.icns
  250. .com.apple.timemachine.donotpresent
  251. # Directories potentially created on remote AFP share
  252. .AppleDB
  253. .AppleDesktop
  254. Network Trash Folder
  255. Temporary Items
  256. .apdisk
  257. #######################################
  258. ### Operating Systems
  259. #######################################
  260. ### Windows ###
  261. # Windows thumbnail cache files
  262. Thumbs.db
  263. ehthumbs.db
  264. ehthumbs_vista.db
  265. # Dump file
  266. *.stackdump
  267. # Folder config file
  268. [Dd]esktop.ini
  269. # Recycle Bin used on file shares
  270. $RECYCLE.BIN/
  271. # Windows Installer files
  272. *.cab
  273. *.msi
  274. *.msix
  275. *.msm
  276. *.msp
  277. # Windows shortcuts
  278. *.lnk
  279. #######################################
  280. ### CodeRed CMS
  281. #######################################
  282. #### CodeRed CMS defaults ###
  283. # Cache
  284. cache/
  285. # File uploads from forms
  286. protected/
  287. # if you want to store original uploaded media files in version control,
  288. # replace "media/" with "media/images/"
  289. media/
  290. #media/images/