Skip to content

Commit 037e8d9

Browse files
committed
Merge remote-tracking branch 'tsconfig/13-moved' into 13.4
2 parents 301c4d6 + 7fc0975 commit 037e8d9

File tree

120 files changed

+9325
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+9325
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#ddev-generated: Automatically generated ddev .gitignore.
2+
# You can remove the above line if you want to edit and maintain this file yourself.
3+
/.gitignore
4+
5+
/**/*.example
6+
/.dbimageBuild
7+
/.dbimageExtra
8+
/.ddev-docker-*.yaml
9+
/.*downloads
10+
/.global_commands
11+
/.homeadditions
12+
/.importdb*
13+
/.sshimageBuild
14+
/.venv
15+
/.webimageBuild
16+
/.webimageExtra
17+
/apache/apache-site.conf
18+
/commands/.gitattributes
19+
/commands/db/mysql
20+
/commands/host/launch
21+
/commands/web/xdebug
22+
/commands/web/live
23+
/config.local.y*ml
24+
/db_snapshots
25+
/import-db
26+
/import.yaml
27+
/mutagen/mutagen.yml
28+
/mutagen/.start-synced
29+
/nginx_full/nginx-site.conf
30+
/postgres/postgresql.conf
31+
/providers/acquia.yaml
32+
/providers/lagoon.yaml
33+
/providers/platform.yaml
34+
/providers/upsun.yaml
35+
/sequelpro.spf
36+
/settings/settings.ddev.py
37+
/traefik/config/reference-tsconfig.yaml
38+
/traefik/certs/reference-tsconfig.crt
39+
/traefik/certs/reference-tsconfig.key
40+
/xhprof/xhprof_prepend.php
41+
/**/README.*
Lines changed: 203 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,203 @@
1+
name: reference-tsconfig
2+
type: php
3+
docroot: ""
4+
php_version: "8.2"
5+
webserver_type: nginx-fpm
6+
router_http_port: "8081"
7+
router_https_port: "4434"
8+
xdebug_enabled: false
9+
additional_hostnames: []
10+
additional_fqdns: []
11+
mariadb_version: "10.5"
12+
mysql_version: ""
13+
nfs_mount_enabled: false
14+
mutagen_enabled: false
15+
hooks:
16+
post-start:
17+
- exec: composer install --no-progress
18+
omit_containers: [dba, ddev-ssh-agent]
19+
webimage_extra_packages: [parallel]
20+
use_dns_when_possible: true
21+
composer_version: "2.4"
22+
web_environment:
23+
- typo3DatabaseName=typo3
24+
- typo3DatabaseHost=db
25+
- typo3DatabaseUsername=root
26+
- typo3DatabasePassword=root
27+
28+
# Key features of ddev's config.yaml:
29+
30+
# name: <projectname> # Name of the project, automatically provides
31+
# http://projectname.ddev.site and https://projectname.ddev.site
32+
33+
# type: <projecttype> # drupal6/7/8, backdrop, typo3, wordpress, php
34+
35+
# docroot: <relative_path> # Relative path to the directory containing index.php.
36+
37+
# php_version: "7.4" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4" "8.0"
38+
39+
# You can explicitly specify the webimage, dbimage, dbaimage lines but this
40+
# is not recommended, as the images are often closely tied to ddev's' behavior,
41+
# so this can break upgrades.
42+
43+
# webimage: <docker_image> # nginx/php docker image.
44+
# dbimage: <docker_image> # mariadb docker image.
45+
# dbaimage: <docker_image>
46+
47+
# mariadb_version and mysql_version
48+
# ddev can use many versions of mariadb and mysql
49+
# However these directives are mutually exclusive
50+
# mariadb_version: 10.2
51+
# mysql_version: 8.0
52+
53+
# router_http_port: <port> # Port to be used for http (defaults to port 80)
54+
# router_https_port: <port> # Port for https (defaults to 443)
55+
56+
# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart"
57+
# Note that for most people the commands
58+
# "ddev xdebug" to enable xdebug and "ddev xdebug off" to disable it work better,
59+
# as leaving xdebug enabled all the time is a big performance hit.
60+
61+
# xhprof_enabled: false # Set to true to enable xhprof and "ddev start" or "ddev restart"
62+
# Note that for most people the commands
63+
# "ddev xhprof" to enable xhprof and "ddev xhprof off" to disable it work better,
64+
# as leaving xhprof enabled all the time is a big performance hit.
65+
66+
# webserver_type: nginx-fpm # or apache-fpm
67+
68+
# timezone: Europe/Berlin
69+
# This is the timezone used in the containers and by PHP;
70+
# it can be set to any valid timezone,
71+
# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
72+
# For example Europe/Dublin or MST7MDT
73+
74+
# composer_version: ""
75+
# if composer_version:"" it will use the current ddev default composer release.
76+
# It can also be set to "1", to get most recent composer v1
77+
# or "2" for most recent composer v2.
78+
# It can be set to any existing specific composer version.
79+
# After first project 'ddev start' this will not be updated until it changes
80+
81+
# additional_hostnames:
82+
# - somename
83+
# - someothername
84+
# would provide http and https URLs for "somename.ddev.site"
85+
# and "someothername.ddev.site".
86+
87+
# additional_fqdns:
88+
# - example.com
89+
# - sub1.example.com
90+
# would provide http and https URLs for "example.com" and "sub1.example.com"
91+
# Please take care with this because it can cause great confusion.
92+
93+
# upload_dir: custom/upload/dir
94+
# would set the destination path for ddev import-files to custom/upload/dir.
95+
96+
# working_dir:
97+
# web: /var/www/html
98+
# db: /home
99+
# would set the default working directory for the web and db services.
100+
# These values specify the destination directory for ddev ssh and the
101+
# directory in which commands passed into ddev exec are run.
102+
103+
# omit_containers: [db, dba, ddev-ssh-agent]
104+
# Currently only these containers are supported. Some containers can also be
105+
# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit
106+
# the "db" container, several standard features of ddev that access the
107+
# database container will be unusable. In the global configuration it is also
108+
# possible to omit ddev-router, but not here.
109+
110+
# nfs_mount_enabled: false
111+
# Great performance improvement but requires host configuration first.
112+
# See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container
113+
114+
# mutagen_enabled: false
115+
# Experimental performance improvement using mutagen asynchronous updates.
116+
# See https://ddev.readthedocs.io/en/latest/users/performance/#using-mutagen
117+
118+
# fail_on_hook_fail: False
119+
# Decide whether 'ddev start' should be interrupted by a failing hook
120+
121+
# host_https_port: "59002"
122+
# The host port binding for https can be explicitly specified. It is
123+
# dynamic unless otherwise specified.
124+
# This is not used by most people, most people use the *router* instead
125+
# of the localhost port.
126+
127+
# host_webserver_port: "59001"
128+
# The host port binding for the ddev-webserver can be explicitly specified. It is
129+
# dynamic unless otherwise specified.
130+
# This is not used by most people, most people use the *router* instead
131+
# of the localhost port.
132+
133+
# host_db_port: "59002"
134+
# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic
135+
# unless explicitly specified.
136+
137+
# phpmyadmin_port: "8036"
138+
# phpmyadmin_https_port: "8037"
139+
# The PHPMyAdmin ports can be changed from the default 8036 and 8037
140+
141+
# host_phpmyadmin_port: "8036"
142+
# The phpmyadmin (dba) port is not normally bound on the host at all, instead being routed
143+
# through ddev-router, but it can be specified and bound.
144+
145+
# mailhog_port: "8025"
146+
# mailhog_https_port: "8026"
147+
# The MailHog ports can be changed from the default 8025 and 8026
148+
149+
# host_mailhog_port: "8025"
150+
# The mailhog port is not normally bound on the host at all, instead being routed
151+
# through ddev-router, but it can be bound directly to localhost if specified here.
152+
153+
# webimage_extra_packages: [php7.4-tidy, php-bcmath]
154+
# Extra Debian packages that are needed in the webimage can be added here
155+
156+
# dbimage_extra_packages: [telnet,netcat]
157+
# Extra Debian packages that are needed in the dbimage can be added here
158+
159+
# use_dns_when_possible: true
160+
# If the host has internet access and the domain configured can
161+
# successfully be looked up, DNS will be used for hostname resolution
162+
# instead of editing /etc/hosts
163+
# Defaults to true
164+
165+
# project_tld: ddev.site
166+
# The top-level domain used for project URLs
167+
# The default "ddev.site" allows DNS lookup via a wildcard
168+
# If you prefer you can change this to "ddev.local" to preserve
169+
# pre-v1.9 behavior.
170+
171+
# ngrok_args: --subdomain mysite --auth username:pass
172+
# Provide extra flags to the "ngrok http" command, see
173+
# https://ngrok.com/docs#http or run "ngrok http -h"
174+
175+
# disable_settings_management: false
176+
# If true, ddev will not create CMS-specific settings files like
177+
# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalConfiguration.php
178+
# In this case the user must provide all such settings.
179+
180+
# You can inject environment variables into the web container with:
181+
# web_environment:
182+
# - SOMEENV=somevalue
183+
# - SOMEOTHERENV=someothervalue
184+
185+
# no_project_mount: false
186+
# (Experimental) If true, ddev will not mount the project into the web container;
187+
# the user is responsible for mounting it manually or via a script.
188+
# This is to enable experimentation with alternate file mounting strategies.
189+
# For advanced users only!
190+
191+
# bind_all_interfaces: false
192+
# If true, host ports will be bound on all network interfaces,
193+
# not just the localhost interface. This means that ports
194+
# will be available on the local network if the host firewall
195+
# allows it.
196+
197+
# Many ddev commands can be extended to run tasks before or after the
198+
# ddev command is executed, for example "post-start", "post-import-db",
199+
# "pre-composer", "post-composer"
200+
# See https://ddev.readthedocs.io/en/stable/users/extending-commands/ for more
201+
# information on the commands that can be extended and the tasks you can define
202+
# for them. Example:
203+
#hooks:
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
#
3+
# Use as master: https://github.com/TYPO3-Documentation/T3DocTeam/blob/main/.editorconfig
4+
5+
# top-most EditorConfig file
6+
root = true
7+
8+
[{*.rst,*.rst.txt}]
9+
charset = utf-8
10+
end_of_line = lf
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true
13+
indent_style = space
14+
indent_size = 4
15+
max_line_length = 80
16+
17+
# MD-Files
18+
[*.md]
19+
charset = utf-8
20+
end_of_line = lf
21+
insert_final_newline = true
22+
trim_trailing_whitespace = true
23+
indent_style = space
24+
indent_size = 4
25+
max_line_length = 80
26+
27+
[Makefile]
28+
# Use tabs for indentation (Makefiles require tabs)
29+
indent_style = tab
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 🔒️ Security Issue
4+
url: https://typo3.org/community/teams/security
5+
about: If you encounter a security issue 👿, please reach out **only** to the TYPO3 Security Team by writing to security (at) typo3.org. Please don't share the information with the Documentation Team or anyone else.
6+
- name: ❓ Ask question
7+
url: https://typo3.slack.com/app_redirect?channel=C028JEPJL
8+
about: Please ask questions in the Slack channel "#typo3-documentation" 🤗
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: 🐛 Issue Report
3+
about: If something is missing or not documented correctly 🤔
4+
5+
---
6+
7+
We recommend submitting changes and suggestions via pull requests. For small changes you
8+
can use the "Edit on GitHub" button which is found at the top of every documentation
9+
page.
10+
11+
For more information on how you can contribute and help improve TYPO3's
12+
documentation, visit the "How to document guide": https://docs.typo3.org/m/typo3/docs-how-to-document/main/en-us/WritingDocsOfficial/Index.html
13+
14+
### Current behavior
15+
16+
A clear and concise description of what the problem is.
17+
18+
### Expected behavior/output
19+
20+
A clear and concise description of what you expect to happen.
21+
22+
### Links
23+
24+
One or more links to the documentation page (if available), preferably to the
25+
relevant section. If applicable, also link to other resources which might be
26+
helpful to better understand your proposal.
27+
28+
### TYPO3 versions
29+
30+
[e.g. 11, 12]
31+
32+
### Possible Solution
33+
34+
Only if you have concrete suggestions to solve the issue.
35+
36+
### Additional context
37+
38+
Add any other context or screenshots about your proposal here.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Backport
2+
on:
3+
pull_request_target:
4+
types:
5+
- closed
6+
- labeled
7+
8+
jobs:
9+
backport:
10+
runs-on: ubuntu-latest
11+
name: Backport
12+
steps:
13+
- name: Backport
14+
uses: m-kuhn/[email protected]
15+
with:
16+
github_token: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: test documentation
2+
3+
on: [ push, pull_request ]
4+
5+
jobs:
6+
tests:
7+
name: documentation
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v4
12+
13+
- name: Test if the documentation will render without warnings
14+
run: |
15+
mkdir -p Documentation-GENERATED-temp \
16+
&& docker run --rm --pull always -v $(pwd):/project \
17+
ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --minimal-test
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: tests
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
testsuite:
9+
name: all tests
10+
runs-on: ubuntu-latest
11+
env:
12+
php: '8.2'
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
17+
- name: Install testing system
18+
run: Build/Scripts/runTests.sh -p ${{ env.php }} -s composerUpdate
19+
20+
- name: Lint PHP
21+
run: Build/Scripts/runTests.sh -p ${{ env.php }} -s lint
22+
23+
- name: CGL
24+
run: Build/Scripts/runTests.sh -n -p ${{ env.php }} -s cgl -n

0 commit comments

Comments
 (0)