Refine ddev config
This commit is contained in:
Executable
+18
@@ -0,0 +1,18 @@
|
||||
Scripts in this directory will be executed on the host
|
||||
but they can take easily take action on containers by using
|
||||
`ddev exec`. A number of environment variables are supplied to the scripts
|
||||
including:
|
||||
|
||||
DDEV_APPROOT: file system location of the project on the host)
|
||||
DDEV_HOST_DB_PORT: Localhost port of the database server
|
||||
DDEV_HOST_WEBSERVER_PORT: Localhost port of the webserver
|
||||
DDEV_HOST_HTTPS_PORT: Localhost port for https on webserver
|
||||
DDEV_DOCROOT: Relative path from approot to docroot
|
||||
DDEV_HOSTNAME: Comma-separated list of FQDN hostnames
|
||||
DDEV_PHP_VERSION
|
||||
DDEV_WEBSERVER_TYPE: nginx-fpm, apache-fpm, apache-cgi
|
||||
DDEV_PROJECT_TYPE: drupal8, typo3, backdrop, wordpress, etc.
|
||||
DDEV_ROUTER_HTTP_PORT: Router port for http
|
||||
DDEV_ROUTER_HTTPS_PORT: Router port for https
|
||||
|
||||
More environment variables may be available, see https://github.com/drud/ddev/blob/52c7915dee41d4846f9f619520b726994c0372c5/pkg/ddevapp/ddevapp.go#L1006-L1030
|
||||
Executable
+28
@@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
|
||||
## #ddev-generated
|
||||
## Description: Launch a browser with the current site
|
||||
## Usage: launch [path]
|
||||
## Example: "ddev launch" or "ddev launch /admin/reports/status/php" or "ddev launch phpinfo.php"
|
||||
|
||||
FULLURL=${DDEV_PRIMARY_URL}
|
||||
|
||||
if [ -n "${1:-}" ] ; then
|
||||
if [[ ${1::1} != "/" ]] ; then
|
||||
FULLURL="${FULLURL}/";
|
||||
fi
|
||||
|
||||
FULLURL="${FULLURL}${1}";
|
||||
fi
|
||||
|
||||
case $OSTYPE in
|
||||
linux-gnu)
|
||||
xdg-open ${FULLURL}
|
||||
;;
|
||||
"darwin"*)
|
||||
open ${FULLURL}
|
||||
;;
|
||||
"win*"* | "msys"*)
|
||||
start ${FULLURL}
|
||||
;;
|
||||
esac
|
||||
Executable
+32
@@ -0,0 +1,32 @@
|
||||
#!/bin/bash
|
||||
|
||||
## #ddev-generated
|
||||
## Description: Run MySQLWorkbench against current db
|
||||
## Usage: mysqlworkbench
|
||||
## Example: "ddev mysqlworkbench"
|
||||
|
||||
# Note that this examle uses $DDEV_HOST_DB_PORT to get the port for the connection
|
||||
# Mysql Workbench can be obtained from https://dev.mysql.com/downloads/workbench/
|
||||
|
||||
query="root:[email protected]:${DDEV_HOST_DB_PORT}"
|
||||
|
||||
case $OSTYPE in
|
||||
linux-gnu)
|
||||
# You may need "apt-get install libproj-dev gnome-keyring" if it complains about those
|
||||
mysql-workbench --query "$query" &
|
||||
echo "Attempted to launch mysql-workbench"
|
||||
;;
|
||||
|
||||
"darwin"*)
|
||||
"/Applications/MySQLWorkbench.app/Contents/MacOS/MySQLWorkbench" --query "$query" &
|
||||
echo "Attempted to launch MySQLWorkbench.app"
|
||||
;;
|
||||
|
||||
"win*"* | "msys"*)
|
||||
# 'C:\Program Files\MySQL\MySQL Workbench 8.0 CE\mysqlworkbench.exe'
|
||||
# You may need to add it to your system %PATH% or change the path here
|
||||
# On docker toolbox you'll need to change the query to use the toolbox IP address,
|
||||
# likely 192.168.99.100
|
||||
'C:\Program Files\MySQL\MySQL Workbench 8.0 CE\mysqlworkbench.exe' --query "$query"
|
||||
#;;
|
||||
esac
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
## #ddev-generated
|
||||
## Description: Open PHPStorm with the current project
|
||||
## Usage: phpstorm
|
||||
## Example: "ddev phpstorm"
|
||||
|
||||
# Example is macOS-specific, but easy to adapt to any OS
|
||||
open -a PHPStorm.app ${DDEV_APPROOT}
|
||||
Executable
+11
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
## #ddev-generated
|
||||
## Description: Tail the main solr log
|
||||
## Usage: solrtail
|
||||
## Example: ddev solrtail
|
||||
|
||||
# This can't work unless you have a solr service,
|
||||
# See https://ddev.readthedocs.io/en/stable/users/extend/additional-services/#apache-solr
|
||||
|
||||
ddev exec -s solr tail -40lf /opt/solr/server/logs/solr.log
|
||||
Reference in New Issue
Block a user