Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@marcobiedermann
Last active September 26, 2017 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcobiedermann/8e80e951cccb0379a6582bfaa5078271 to your computer and use it in GitHub Desktop.
Save marcobiedermann/8e80e951cccb0379a6582bfaa5078271 to your computer and use it in GitHub Desktop.
Contao 4 standard Installation Setup
#!/usr/bin/env bash
# Contao 4 standard releases: https://github.com/contao/standard-edition/releases/
# Contao Check releases: https://github.com/contao/check/releases
CONTAO_CORE_VERSION="4.4.5"
CONTAO_CHECK_VERSION="12.0"
# Install Contao
wget https://github.com/contao/standard-edition/releases/download/${CONTAO_CORE_VERSION}/contao-${CONTAO_CORE_VERSION}.tar.gz
tar -xzf contao-${CONTAO_CORE_VERSION}.tar.gz
rm -f contao-${CONTAO_CORE_VERSION}.tar.gz
cd contao-${CONTAO_CORE_VERSION}
cp -rf . ..
cd ..
rm -rf contao-${CONTAO_CORE_VERSION}
# Install Contao Check
wget https://github.com/contao/check/archive/${CONTAO_CHECK_VERSION}.tar.gz
tar -xzf ${CONTAO_CHECK_VERSION}.tar.gz
rm -rf ${CONTAO_CHECK_VERSION}.tar.gz
cd check-${CONTAO_CHECK_VERSION}
cp -rf . ..
cd ..
rm -rf check-${CONTAO_CHECK_VERSION}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment