Skip to content

Instantly share code, notes, and snippets.

View gilbertsoft's full-sized avatar

Gilbertsoft gilbertsoft

View GitHub Profile
@gilbertsoft
gilbertsoft / README.md
Last active August 26, 2020 10:41
Automatically setup the Aimeos Distribution using DDEV and Composer

Automatically Setup The Aimeos Distribution

ddev config --project-type=typo3 --docroot=public --create-docroot=true
ddev composer create "typo3/cms-base-distribution:^9" --no-install

Define the following environment variables via .ddev/docker-compose.environment.yaml:

@gilbertsoft
gilbertsoft / Dockerfile
Last active March 3, 2023 23:31
Easy change ImageMagick configuration to allow more file types in DDEV, add this two files to .ddev/web-build/
# Change default ImageMagick configuration to allow additional file types
ARG BASE_IMAGE
FROM $BASE_IMAGE
ADD policy.xml /etc/ImageMagick-6/policy.xml
@gilbertsoft
gilbertsoft / typo3legacy.sh
Last active December 14, 2019 10:44
Install TYPO3 8.7 Legacy with DDEV Local
#!/bin/bash
ddev config --create-docroot --docroot=public --project-type=typo3
cat << EOF > .ddev/docker-compose.environment.yaml
version: '3.6'
services:
web:
environment:
@gilbertsoft
gilbertsoft / setup.sh
Created December 12, 2019 14:40
Install TYPO3 Introduction with DDEV Local
#!/bin/bash
ddev config --create-docroot --docroot=public --project-type=typo3
cat << EOF > .ddev/docker-compose.environment.yaml
version: '3.6'
services:
web:
environment:
@gilbertsoft
gilbertsoft / setup.sh
Last active December 11, 2019 20:48
Install TYPO3 Introduction with Apache Solr
#!/bin/bash
ddev config --create-docroot --docroot=public --project-type=typo3
cat << EOF > .ddev/docker-compose.environment.yaml
version: '3.6'
services:
web:
environment:
@gilbertsoft
gilbertsoft / typo3-aimeos-dev.sh
Last active November 30, 2020 18:28
Install and Setup Aimeos Dev Packages using TYPO3 and DDEV
#!/bin/bash
# ---------------------------------------------------------------------------
# start configuration
# ---------------------------------------------------------------------------
project=typo3-aimeos-dev
projectFolder=${project}
githubOrg=yourorg
typo3Version=9.5
packages='aimeos-core ai-controller-frontend ai-client-jsonapi ai-controller-jobs ai-client-html ai-admin-jsonadm ai-admin-jqadm ai-typo3 ai-gettext aimeos-typo3'