From 59f8290443521fe1bcdfed46d19699b66d8bf805 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Sat, 19 Mar 2022 19:44:35 +0100 Subject: [PATCH] Remove obsolete ddev files --- .ddev/commands/web/deploy | 6 ------ .ddev/php/xdebug.ini | 2 -- .ddev/providers/rsync.yaml | 14 -------------- .ddev/web-build/Dockerfile | 4 ---- 4 files changed, 26 deletions(-) delete mode 100755 .ddev/commands/web/deploy delete mode 100644 .ddev/php/xdebug.ini delete mode 100755 .ddev/providers/rsync.yaml delete mode 100644 .ddev/web-build/Dockerfile diff --git a/.ddev/commands/web/deploy b/.ddev/commands/web/deploy deleted file mode 100755 index f8e4803b..00000000 --- a/.ddev/commands/web/deploy +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -## Description: Deploy project from within container -## Usage: deploy - -php vendor/bin/dep deploy diff --git a/.ddev/php/xdebug.ini b/.ddev/php/xdebug.ini deleted file mode 100644 index 6db4f4c2..00000000 --- a/.ddev/php/xdebug.ini +++ /dev/null @@ -1,2 +0,0 @@ -[Xdebug] -xdebug.max_nesting_level = 512 diff --git a/.ddev/providers/rsync.yaml b/.ddev/providers/rsync.yaml deleted file mode 100755 index eaeb9c3f..00000000 --- a/.ddev/providers/rsync.yaml +++ /dev/null @@ -1,14 +0,0 @@ -environment_variables: - dburl: p546128@185.237.67.190:files/backup/typo3-prod.dump.sql.gz - -auth_command: - command: | - set -eu -o pipefail - ssh-add -l >/dev/null || ( echo "Please 'ddev auth ssh' before running this command." && exit 1 ) - -db_pull_command: - command: | - # set -x # You can enable bash debugging output by uncommenting - set -eu -o pipefail - rsync -az "${dburl}" /var/www/html/.ddev/.downloads/db.sql.gz - service: web diff --git a/.ddev/web-build/Dockerfile b/.ddev/web-build/Dockerfile deleted file mode 100644 index 6b9ad779..00000000 --- a/.ddev/web-build/Dockerfile +++ /dev/null @@ -1,4 +0,0 @@ -ARG BASE_IMAGE -FROM $BASE_IMAGE -RUN npm i -g n && n 14 -RUN npm i -g npm