123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399 |
- # Created by https://www.gitignore.io, modified for use with CodeRed CMS.
- #######################################
- ### Editors
- #######################################
- ### Emacs ###
- # -*- mode: gitignore; -*-
- *~
- \#*\#
- /.emacs.desktop
- /.emacs.desktop.lock
- *.elc
- auto-save-list
- tramp
- .\#*
- # Org-mode
- .org-id-locations
- *_archive
- # flymake-mode
- *_flymake.*
- # eshell files
- /eshell/history
- /eshell/lastdir
- # elpa packages
- /elpa/
- # reftex files
- *.rel
- # Flycheck
- flycheck_*.el
- # server auth directory
- /server/
- # projectiles files
- .projectile
- # directory configuration
- .dir-locals.el
- # network security
- /network-security.data
- ### KomodoEdit ###
- *.komodoproject
- .komodotools
- ### PyCharm ###
- # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
- # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
- # User-specific stuff
- .idea/**/workspace.xml
- .idea/**/tasks.xml
- .idea/**/usage.statistics.xml
- .idea/**/dictionaries
- .idea/**/shelf
- # Generated files
- .idea/**/contentModel.xml
- # Sensitive or high-churn files
- .idea/**/dataSources/
- .idea/**/dataSources.ids
- .idea/**/dataSources.local.xml
- .idea/**/sqlDataSources.xml
- .idea/**/dynamic.xml
- .idea/**/uiDesigner.xml
- .idea/**/dbnavigator.xml
- # Gradle
- .idea/**/gradle.xml
- .idea/**/libraries
- # Mongo Explorer plugin
- .idea/**/mongoSettings.xml
- # File-based project format
- *.iws
- # IntelliJ
- out/
- # mpeltonen/sbt-idea plugin
- .idea_modules/
- # JIRA plugin
- atlassian-ide-plugin.xml
- # Cursive Clojure plugin
- .idea/replstate.xml
- # Crashlytics plugin (for Android Studio and IntelliJ)
- com_crashlytics_export_strings.xml
- crashlytics.properties
- crashlytics-build.properties
- fabric.properties
- # Editor-based Rest Client
- .idea/httpRequests
- # Sonarlint plugin
- .idea/sonarlint
- ### SublimeText ###
- # Cache files for Sublime Text
- *.tmlanguage.cache
- *.tmPreferences.cache
- *.stTheme.cache
- # Workspace files are user-specific
- *.sublime-workspace
- # Project files should be checked into the repository, unless a significant
- # proportion of contributors will probably not be using Sublime Text
- # *.sublime-project
- # SFTP configuration file
- sftp-config.json
- # Package control specific files
- Package Control.last-run
- Package Control.ca-list
- Package Control.ca-bundle
- Package Control.system-ca-bundle
- Package Control.cache/
- Package Control.ca-certs/
- Package Control.merged-ca-bundle
- Package Control.user-ca-bundle
- oscrypto-ca-bundle.crt
- bh_unicode_properties.cache
- # Sublime-github package stores a github token in this file
- # https://packagecontrol.io/packages/sublime-github
- GitHub.sublime-settings
- ### TextMate ###
- *.tmproj
- *.tmproject
- tmtags
- ### Vim ###
- # Swap
- [._]*.s[a-v][a-z]
- [._]*.sw[a-p]
- [._]s[a-rt-v][a-z]
- [._]ss[a-gi-z]
- [._]sw[a-p]
- # Session
- Session.vim
- # Temporary
- .netrwhist
- # Auto-generated tag files
- tags
- # Persistent undo
- [._]*.un~
- ### VisualStudioCode ###
- .vscode/
- ### VisualStudioCode Patch ###
- # Ignore all local history of files
- .history
- #######################################
- ### Django/Python Stack
- #######################################
- ### Django ###
- *.log
- *.pot
- *.pyc
- __pycache__/
- local_settings.py
- db.sqlite3
- # If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
- # in your Git repository. Update and uncomment the following line accordingly.
- # <django-project-name>/staticfiles/
- ### Django.Python Stack ###
- # Byte-compiled / optimized / DLL files
- *.py[cod]
- *$py.class
- # C extensions
- *.so
- # Distribution / packaging
- .Python
- build/
- develop-eggs/
- dist/
- downloads/
- eggs/
- .eggs/
- lib/
- lib64/
- parts/
- sdist/
- var/
- wheels/
- share/python-wheels/
- *.egg-info/
- .installed.cfg
- *.egg
- MANIFEST
- # PyInstaller
- # Usually these files are written by a python script from a template
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
- *.manifest
- *.spec
- # Installer logs
- pip-log.txt
- pip-delete-this-directory.txt
- # Unit test / coverage reports
- htmlcov/
- .tox/
- .nox/
- .coverage
- .coverage.*
- .cache
- nosetests.xml
- coverage.xml
- *.cover
- .hypothesis/
- .pytest_cache/
- # Translations
- *.mo
- # Flask stuff:
- instance/
- .webassets-cache
- # Scrapy stuff:
- .scrapy
- # Sphinx documentation
- docs/_build/
- # PyBuilder
- target/
- # Jupyter Notebook
- .ipynb_checkpoints
- # IPython
- profile_default/
- ipython_config.py
- # pyenv
- .python-version
- # celery beat schedule file
- celerybeat-schedule
- # SageMath parsed files
- *.sage.py
- # Environments
- .env
- .venv
- env/
- venv/
- ENV/
- env.bak/
- venv.bak/
- # Spyder project settings
- .spyderproject
- .spyproject
- # Rope project settings
- .ropeproject
- # mkdocs documentation
- /site
- # mypy
- .mypy_cache/
- .dmypy.json
- dmypy.json
- # Pyre type checker
- .pyre/
- ### OSX ###
- # General
- .DS_Store
- .AppleDouble
- .LSOverride
- # Icon must end with two \r
- Icon
- # Thumbnails
- ._*
- # Files that might appear in the root of a volume
- .DocumentRevisions-V100
- .fseventsd
- .Spotlight-V100
- .TemporaryItems
- .Trashes
- .VolumeIcon.icns
- .com.apple.timemachine.donotpresent
- # Directories potentially created on remote AFP share
- .AppleDB
- .AppleDesktop
- Network Trash Folder
- Temporary Items
- .apdisk
- #######################################
- ### Operating Systems
- #######################################
- ### Windows ###
- # Windows thumbnail cache files
- Thumbs.db
- ehthumbs.db
- ehthumbs_vista.db
- # Dump file
- *.stackdump
- # Folder config file
- [Dd]esktop.ini
- # Recycle Bin used on file shares
- $RECYCLE.BIN/
- # Windows Installer files
- *.cab
- *.msi
- *.msix
- *.msm
- *.msp
- # Windows shortcuts
- *.lnk
- #######################################
- ### CodeRed CMS
- #######################################
- #### CodeRed CMS defaults ###
- # Cache
- cache/
- # File uploads from forms
- protected/
- # if you want to store original uploaded media files in version control,
- # replace "media/" with "media/images/"
- media/
- #media/images/
|