Skip to content

Commit 9ede7d1

Browse files
committed
refactor: WIP
1 parent 9d51cee commit 9ede7d1

File tree

89 files changed

+3526
-157
lines changed

Some content is hidden

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

89 files changed

+3526
-157
lines changed

.ddev/.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
XWPDI_PATH="/home/venom/projects/composer/xwp/di"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: ddev-cron
2+
repository: ddev/ddev-cron
3+
version: 1.9.0
4+
install_date: "2025-06-24T14:45:43+02:00"
5+
project_files:
6+
- web-build/Dockerfile.ddev-cron
7+
- web-build/cron.conf
8+
- web-build/time.cron.example
9+
global_files: []
10+
removal_actions: []
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: oblak-ddev-wp
2+
repository: /home/venom/projects/ddev/ddev-config-wp
3+
version: ""
4+
install_date: "2025-06-24T14:45:47+02:00"
5+
project_files:
6+
- mysql/extra.cnf
7+
- php/20-ffi.ini
8+
- php/20-ftp.ini
9+
- php/20-ldap.ini
10+
- php/20-msgpack.ini
11+
- php/20-pgsql.ini
12+
- php/20-shmop.ini
13+
- php/20-soap.ini
14+
- php/20-sockets.ini
15+
- php/20-sysvmsg.ini
16+
- php/20-sysvshm.ini
17+
- php/20-uploadprogress.ini
18+
- php/25-memcached.ini
19+
- php/custom-opcache.ini
20+
- php/exec_time.ini
21+
- providers/oblak.yaml.tmpl
22+
- web-build/wp.cron
23+
- wp/config/wp-config-db.php
24+
- wp/config/wp-config-debug.php
25+
- wp/config/wp-config-redis.php
26+
- wp/config/wp-config-salt.php
27+
- wp/config/wp-config-tweaks.php
28+
- wp/config/wp-config.php
29+
- config.wp_hooks.yaml
30+
- config.wp.yaml
31+
- docker-compose.mounts.yml
32+
global_files: []
33+
removal_actions: []
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: phpmyadmin
2+
repository: ddev/ddev-phpmyadmin
3+
version: v1.0.0
4+
install_date: "2025-06-24T14:45:45+02:00"
5+
project_files:
6+
- docker-compose.phpmyadmin.yaml
7+
- docker-compose.phpmyadmin_norouter.yaml
8+
- commands/host/phpmyadmin
9+
global_files: []
10+
removal_actions: []
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: redis
2+
repository: ddev/ddev-redis-7
3+
version: v2.7.2
4+
install_date: "2025-06-24T14:45:47+02:00"
5+
project_files:
6+
- commands/redis/redis
7+
- commands/redis/redis-flush
8+
- redis/redis.conf
9+
- redis/advanced.conf
10+
- redis/append.conf
11+
- redis/general.conf
12+
- redis/io.conf
13+
- redis/memory.conf
14+
- redis/network.conf
15+
- redis/security.conf
16+
- redis/snapshots.conf
17+
- docker-compose.redis.yaml
18+
global_files: []
19+
removal_actions: []

.ddev/commands/host/phpmyadmin

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
## #ddev-generated: If you want to edit and own this file, remove this line.
4+
## Description: Launch a browser with PhpMyAdmin
5+
## Usage: phpmyadmin
6+
## Example: "ddev phpmyadmin"
7+
8+
DDEV_PHPMYADMIN_PORT=8036
9+
DDEV_PHPMYADMIN_HTTPS_PORT=8037
10+
if [ ${DDEV_PRIMARY_URL%://*} = "http" ] || [ -n "${GITPOD_WORKSPACE_ID:-}" ] || [ "${CODESPACES:-}" = "true" ]; then
11+
# Gitpod: "gp preview" opens a blank page for PhpMyAdmin, use "xdg-open" instead
12+
if [ "${OSTYPE:-}" = "linux-gnu" ] && [ -n "${GITPOD_WORKSPACE_ID:-}" ] && [ -z "${DDEV_DEBUG:-}" ]; then
13+
xdg-open "$(DDEV_DEBUG=true ddev launch :$DDEV_PHPMYADMIN_PORT | grep "FULLURL" | awk '{print $2}')"
14+
else
15+
ddev launch :$DDEV_PHPMYADMIN_PORT
16+
fi
17+
else
18+
ddev launch :$DDEV_PHPMYADMIN_HTTPS_PORT
19+
fi

.ddev/commands/redis/redis

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
#ddev-generated
3+
## Description: Run redis-cli inside the redis container
4+
## Usage: redis [flags] [args]
5+
## Example: "redis KEYS *" or "ddev redis-cli INFO" or "ddev redis-cli --version"
6+
7+
redis-cli -p 6379 -h redis -a redis --no-auth-warning "$@"

.ddev/commands/redis/redis-flush

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
#ddev-generated
3+
## Description: Run redis-cli inside the redis container
4+
## Usage: redis-flush
5+
## Example: "redis-flush"
6+
7+
redis-cli -a redis --no-auth-warning FLUSHALL ASYNC

.ddev/config.wp.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#ddev-generated
2+
override_config: true
3+
database:
4+
type: mysql
5+
version: "8.0"
6+
type: "wordpress"
7+
docroot: "public_html"
8+
working_dir:
9+
web: /var/www/html/public_html
10+
timezone: Europe/Belgrade
11+
disable_settings_management: true
12+
default_container_timeout: 300

.ddev/config.wp_hooks.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#ddev-generated
2+
hooks:
3+
post-import-db:
4+
- exec: bash /mnt/ddev_config/wp/post-db-import.sh
5+
pre-stop:
6+
- exec: echo '' > /var/www/html/debug.log
7+
- exec: echo '' > /var/www/html/cron.log

0 commit comments

Comments
 (0)