|
| 1 | +name: nightwatch-training |
| 2 | +type: drupal9 |
| 3 | +docroot: web |
| 4 | +php_version: "7.3" |
| 5 | +webserver_type: nginx-fpm |
| 6 | +router_http_port: "80" |
| 7 | +router_https_port: "443" |
| 8 | +xdebug_enabled: false |
| 9 | +additional_hostnames: [] |
| 10 | +additional_fqdns: [] |
| 11 | +mariadb_version: "10.3" |
| 12 | +mysql_version: "" |
| 13 | +provider: default |
| 14 | +use_dns_when_possible: true |
| 15 | +composer_version: "2" |
| 16 | +hooks: |
| 17 | + post-start: |
| 18 | + - exec: cd .. && composer install |
| 19 | + - exec: cd core && yarn install |
| 20 | + - exec: mkdir -p private/browsertest_output |
| 21 | + |
| 22 | +# This config.yaml was created with ddev version v1.16.7 |
| 23 | +# webimage: drud/ddev-webserver:v1.16.7 |
| 24 | +# dbimage: drud/ddev-dbserver-mariadb-10.2:v1.16.0 |
| 25 | +# dbaimage: phpmyadmin:5 |
| 26 | +# However we do not recommend explicitly wiring these images into the |
| 27 | +# config.yaml as they may break future versions of ddev. |
| 28 | +# You can update this config.yaml using 'ddev config'. |
| 29 | + |
| 30 | +# Key features of ddev's config.yaml: |
| 31 | + |
| 32 | +# name: <projectname> # Name of the project, automatically provides |
| 33 | +# http://projectname.ddev.site and https://projectname.ddev.site |
| 34 | + |
| 35 | +# type: <projecttype> # drupal6/7/8, backdrop, typo3, wordpress, php |
| 36 | + |
| 37 | +# docroot: <relative_path> # Relative path to the directory containing index.php. |
| 38 | + |
| 39 | +# php_version: "7.3" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4" "8.0" |
| 40 | + |
| 41 | +# You can explicitly specify the webimage, dbimage, dbaimage lines but this |
| 42 | +# is not recommended, as the images are often closely tied to ddev's' behavior, |
| 43 | +# so this can break upgrades. |
| 44 | + |
| 45 | +# webimage: <docker_image> # nginx/php docker image. |
| 46 | +# dbimage: <docker_image> # mariadb docker image. |
| 47 | +# dbaimage: <docker_image> |
| 48 | + |
| 49 | +# mariadb_version and mysql_version |
| 50 | +# ddev can use many versions of mariadb and mysql |
| 51 | +# However these directives are mutually exclusive |
| 52 | +# mariadb_version: 10.2 |
| 53 | +# mysql_version: 8.0 |
| 54 | + |
| 55 | +# router_http_port: <port> # Port to be used for http (defaults to port 80) |
| 56 | +# router_https_port: <port> # Port for https (defaults to 443) |
| 57 | + |
| 58 | +# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart" |
| 59 | +# Note that for most people the commands |
| 60 | +# "ddev xdebug" to enable xdebug and "ddev xdebug off" to disable it work better, |
| 61 | +# as leaving xdebug enabled all the time is a big performance hit. |
| 62 | + |
| 63 | +# webserver_type: nginx-fpm # or apache-fpm |
| 64 | + |
| 65 | +# timezone: Europe/Berlin |
| 66 | +# This is the timezone used in the containers and by PHP; |
| 67 | +# it can be set to any valid timezone, |
| 68 | +# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones |
| 69 | +# For example Europe/Dublin or MST7MDT |
| 70 | + |
| 71 | +# composer_version: "2" |
| 72 | +# if composer_version:"" it will use the current ddev default composer release. |
| 73 | +# It can also be set to "1", to get most recent composer v1 |
| 74 | +# or "2" for most recent composer v2. |
| 75 | +# It can be set to any existing specific composer version. |
| 76 | +# After first project 'ddev start' this will not be updated until it changes |
| 77 | + |
| 78 | +# additional_hostnames: |
| 79 | +# - somename |
| 80 | +# - someothername |
| 81 | +# would provide http and https URLs for "somename.ddev.site" |
| 82 | +# and "someothername.ddev.site". |
| 83 | + |
| 84 | +# additional_fqdns: |
| 85 | +# - example.com |
| 86 | +# - sub1.example.com |
| 87 | +# would provide http and https URLs for "example.com" and "sub1.example.com" |
| 88 | +# Please take care with this because it can cause great confusion. |
| 89 | + |
| 90 | +# upload_dir: custom/upload/dir |
| 91 | +# would set the destination path for ddev import-files to custom/upload/dir. |
| 92 | + |
| 93 | +# working_dir: |
| 94 | +# web: /var/www/html |
| 95 | +# db: /home |
| 96 | +# would set the default working directory for the web and db services. |
| 97 | +# These values specify the destination directory for ddev ssh and the |
| 98 | +# directory in which commands passed into ddev exec are run. |
| 99 | + |
| 100 | +# omit_containers: [db, dba, ddev-ssh-agent] |
| 101 | +# Currently only these containers are supported. Some containers can also be |
| 102 | +# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit |
| 103 | +# the "db" container, several standard features of ddev that access the |
| 104 | +# database container will be unusable. |
| 105 | + |
| 106 | +# nfs_mount_enabled: false |
| 107 | +# Great performance improvement but requires host configuration first. |
| 108 | +# See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container |
| 109 | + |
| 110 | +# host_https_port: "59002" |
| 111 | +# The host port binding for https can be explicitly specified. It is |
| 112 | +# dynamic unless otherwise specified. |
| 113 | +# This is not used by most people, most people use the *router* instead |
| 114 | +# of the localhost port. |
| 115 | + |
| 116 | +# host_webserver_port: "59001" |
| 117 | +# The host port binding for the ddev-webserver can be explicitly specified. It is |
| 118 | +# dynamic unless otherwise specified. |
| 119 | +# This is not used by most people, most people use the *router* instead |
| 120 | +# of the localhost port. |
| 121 | + |
| 122 | +# host_db_port: "59002" |
| 123 | +# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic |
| 124 | +# unless explicitly specified. |
| 125 | + |
| 126 | +# phpmyadmin_port: "8036" |
| 127 | +# phpmyadmin_https_port: "8037" |
| 128 | +# The PHPMyAdmin ports can be changed from the default 8036 and 8037 |
| 129 | + |
| 130 | +# mailhog_port: "8025" |
| 131 | +# mailhog_https_port: "8026" |
| 132 | +# The MailHog ports can be changed from the default 8025 and 8026 |
| 133 | + |
| 134 | +# webimage_extra_packages: [php7.3-tidy, php-bcmath] |
| 135 | +# Extra Debian packages that are needed in the webimage can be added here |
| 136 | + |
| 137 | +# dbimage_extra_packages: [telnet,netcat] |
| 138 | +# Extra Debian packages that are needed in the dbimage can be added here |
| 139 | + |
| 140 | +# use_dns_when_possible: true |
| 141 | +# If the host has internet access and the domain configured can |
| 142 | +# successfully be looked up, DNS will be used for hostname resolution |
| 143 | +# instead of editing /etc/hosts |
| 144 | +# Defaults to true |
| 145 | + |
| 146 | +# project_tld: ddev.site |
| 147 | +# The top-level domain used for project URLs |
| 148 | +# The default "ddev.site" allows DNS lookup via a wildcard |
| 149 | +# If you prefer you can change this to "ddev.local" to preserve |
| 150 | +# pre-v1.9 behavior. |
| 151 | + |
| 152 | +# ngrok_args: --subdomain mysite --auth username:pass |
| 153 | +# Provide extra flags to the "ngrok http" command, see |
| 154 | +# https://ngrok.com/docs#http or run "ngrok http -h" |
| 155 | + |
| 156 | +# disable_settings_management: false |
| 157 | +# If true, ddev will not create CMS-specific settings files like |
| 158 | +# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalSettings.php |
| 159 | +# In this case the user must provide all such settings. |
| 160 | + |
| 161 | +# no_project_mount: false |
| 162 | +# (Experimental) If true, ddev will not mount the project into the web container; |
| 163 | +# the user is responsible for mounting it manually or via a script. |
| 164 | +# This is to enable experimentation with alternate file mounting strategies. |
| 165 | +# For advanced users only! |
| 166 | + |
| 167 | +# provider: default # Currently either "default" or "pantheon" |
| 168 | +# |
| 169 | +# Many ddev commands can be extended to run tasks before or after the |
| 170 | +# ddev command is executed, for example "post-start", "post-import-db", |
| 171 | +# "pre-composer", "post-composer" |
| 172 | +# See https://ddev.readthedocs.io/en/stable/users/extending-commands/ for more |
| 173 | +# information on the commands that can be extended and the tasks you can define |
| 174 | +# for them. Example: |
| 175 | +#hooks: |
| 176 | +# post-import-db: |
| 177 | +# - exec: drush cr |
| 178 | +# - exec: drush updb |
0 commit comments