-
Notifications
You must be signed in to change notification settings - Fork 30
Refactor UI with DaisyUI v5 and htmx #143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| name: phpmyadmin | ||
| repository: ddev/ddev-phpmyadmin | ||
| version: v1.0.2 | ||
| install_date: "2026-04-04T16:48:16+02:00" | ||
| project_files: | ||
| - docker-compose.phpmyadmin.yaml | ||
| - docker-compose.phpmyadmin_norouter.yaml | ||
| - commands/host/phpmyadmin | ||
| global_files: [] | ||
| removal_actions: [] | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,19 @@ | ||||||
| #!/usr/bin/env bash | ||||||
|
|
||||||
| ## #ddev-generated: If you want to edit and own this file, remove this line. | ||||||
| ## Description: Launch a browser with PhpMyAdmin | ||||||
| ## Usage: phpmyadmin | ||||||
| ## Example: "ddev phpmyadmin" | ||||||
|
|
||||||
| DDEV_PHPMYADMIN_PORT=8036 | ||||||
| DDEV_PHPMYADMIN_HTTPS_PORT=8037 | ||||||
| if [ ${DDEV_PRIMARY_URL%://*} = "http" ] || [ -n "${GITPOD_WORKSPACE_ID:-}" ] || [ "${CODESPACES:-}" = "true" ]; then | ||||||
|
||||||
| if [ ${DDEV_PRIMARY_URL%://*} = "http" ] || [ -n "${GITPOD_WORKSPACE_ID:-}" ] || [ "${CODESPACES:-}" = "true" ]; then | |
| if [ "${DDEV_PRIMARY_URL%://*}" = "http" ] || [ -n "${GITPOD_WORKSPACE_ID:-}" ] || [ "${CODESPACES:-}" = "true" ]; then |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ type: cakephp | |
| docroot: webroot | ||
| php_version: "8.4" | ||
| webserver_type: nginx-fpm | ||
| xdebug_enabled: true | ||
| xdebug_enabled: false | ||
| additional_hostnames: [] | ||
|
Comment on lines
4
to
7
|
||
| additional_fqdns: [] | ||
| database: | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,31 @@ | ||||||||||||||||||||||||||
| #ddev-generated | ||||||||||||||||||||||||||
| services: | ||||||||||||||||||||||||||
| phpmyadmin: | ||||||||||||||||||||||||||
| container_name: ddev-${DDEV_SITENAME}-phpmyadmin | ||||||||||||||||||||||||||
| image: ${PHPMYADMIN_DOCKER_IMAGE:-phpmyadmin:5} | ||||||||||||||||||||||||||
| working_dir: "/root" | ||||||||||||||||||||||||||
| restart: "no" | ||||||||||||||||||||||||||
| labels: | ||||||||||||||||||||||||||
| com.ddev.site-name: ${DDEV_SITENAME} | ||||||||||||||||||||||||||
| com.ddev.approot: ${DDEV_APPROOT} | ||||||||||||||||||||||||||
| volumes: | ||||||||||||||||||||||||||
| - ".:/mnt/ddev_config" | ||||||||||||||||||||||||||
| - "ddev-global-cache:/mnt/ddev-global-cache" | ||||||||||||||||||||||||||
| expose: | ||||||||||||||||||||||||||
| - "80" | ||||||||||||||||||||||||||
| environment: | ||||||||||||||||||||||||||
| - PMA_USER=root | ||||||||||||||||||||||||||
| - PMA_PASSWORD=root | ||||||||||||||||||||||||||
| - PMA_HOST=db | ||||||||||||||||||||||||||
| - PMA_PORT=3306 | ||||||||||||||||||||||||||
| - VIRTUAL_HOST=$DDEV_HOSTNAME | ||||||||||||||||||||||||||
| - UPLOAD_LIMIT=4000M | ||||||||||||||||||||||||||
|
Comment on lines
+17
to
+22
|
||||||||||||||||||||||||||
| - PMA_USER=root | |
| - PMA_PASSWORD=root | |
| - PMA_HOST=db | |
| - PMA_PORT=3306 | |
| - VIRTUAL_HOST=$DDEV_HOSTNAME | |
| - UPLOAD_LIMIT=4000M | |
| - PMA_USER=${DDEV_DATABASE_USER:-db} | |
| - PMA_PASSWORD=${DDEV_DATABASE_PASSWORD:-db} | |
| - PMA_HOST=db | |
| - PMA_PORT=3306 | |
| - VIRTUAL_HOST=$DDEV_HOSTNAME | |
| - UPLOAD_LIMIT=256M |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| #ddev-generated | ||
| # If omit_containers[ddev-router] then this file will be replaced | ||
| # with another with a `ports` statement to directly expose port 80 to 8036 | ||
| services: {} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The added PhpMyAdmin addon metadata (including
install_date) isn’t mentioned in the PR description and is typically local-environment state. If this is intentional, please call it out in the PR description; otherwise consider excluding addon-metadata from version control to avoid noisy diffs for unrelated UI changes.