streams/.gitignore

108 lines
1.9 KiB
Text
Raw Permalink Normal View History

## Ignore tmp, backup, logs and other junk files
*~
*.gz
2010-07-23 03:22:03 +00:00
*.out
*.bak
*.swp
*.log
*.lock
*.kate-swp
#Ignore emacs tempfiles
\#*
2012-07-20 01:54:53 +00:00
# patch attempts
*.orig
*.rej
# OSX .DS_Store files
.DS_Store
# version scripts (repo master only)
.version*
Thumbs.db
2021-09-13 05:38:02 +00:00
*.pyc
__pycache__
2012-07-20 01:54:53 +00:00
2017-11-07 05:55:36 +00:00
## Ignore site specific files and folders
2024-05-12 21:08:35 +00:00
.env*
.htaccess
.htconfig.php
2020-10-20 01:53:12 +00:00
.htstartup.php
.lando.local.yml
2023-08-18 11:43:47 +00:00
codeception.yml
favicon.*
addon/
2017-11-07 05:55:36 +00:00
widget/
custom/
/store/
2020-03-05 04:07:26 +00:00
cache/
# site apps
apps/
2021-09-13 04:24:23 +00:00
doc/site
# default startpage
home.html
# page header plugin
pageheader.html
# Ignore site TOS
doc/SiteTOS.md
# themes except for redbasic
view/theme/*
2022-03-07 05:31:28 +00:00
!view/theme/redbasic*
# site theme schemas
view/theme/redbasic/schema/default.php
# Doxygen API documentation, run 'doxygen util/Doxyfile' to generate it
doc/html/
# nsh configuration files
.nshrc
2015-02-20 04:11:49 +00:00
# external repositories for themes/addons
extend/
# files generated by phpunit
.phpunit.result.cache
tests/results/
tests/.phpunit.result.cache
tests/.phpunit.cache
2012-03-08 16:44:57 +00:00
## exclude IDE files
# config files and folders from Eclipse
.project
.buildpath
.externalToolBuilders
.settings/
2021-10-18 15:31:53 +00:00
.pydevproject
# NetBeans project folder
nbproject/
# Kdevelop project files
2013-09-29 19:06:43 +00:00
*.kdev4
# PHPStorm
.idea/
## composer
# locally installed composer binary
composer.phar
# allow composer.lock, as it is required to have a common state
!composer.lock
# vendor/ is managed by composer, no need to include in our repository
# requires new deployment and needs discussion first
2022-01-08 00:45:30 +00:00
vendor/
# Exclude at least some vendor test files, examples, etc. so far
vendor/**/tests/
vendor/**/Test/
vendor/sabre/*/examples/
2024-03-28 09:15:05 +00:00
###> phpunit/phpunit ###
/phpunit.xml
.phpunit.result.cache
###< phpunit/phpunit ###
###> symfony/framework-bundle ###
/.env.local
/.env.local.php
/.env.*.local
/config/secrets/prod/prod.decrypt.private.php
/public/bundles/
/var/
/vendor/
###< symfony/framework-bundle ###
###> league/oauth2-server-bundle ###
/config/jwt/*.pem
###< league/oauth2-server-bundle ###