Skip to content

Instantly share code, notes, and snippets.

@rotespferd
Last active August 29, 2015 13:56
Show Gist options
  • Save rotespferd/9297015 to your computer and use it in GitHub Desktop.
Save rotespferd/9297015 to your computer and use it in GitHub Desktop.
Installation of a bootstrap TYPO3-project.
#!/bin/sh
echo "=================================="
echo "Welcome to TYPO3 project-bootstrapping."
echo "=================================="
mkdir cms
echo "Clone TYPO3 repositry"
git clone https://github.com/TYPO3/TYPO3.CMS.git typo3_src
echo "Checkout current release"
cd typo3_src
git checkout -f tags/TYPO3_6-2-6
echo "Clone project-bootstrap"
cd ../cms
git clone https://github.com/rotespferd/TYPO3-Bootstrap.git .
echo "Link sources"
rm typo3_src
ln -s ../typo3_src/ typo3_src
echo "Download some js libraries"
wget http://code.jquery.com/jquery-1.11.0.min.js -O fileadmin/template/js/libs/jquery.min.js
wget http://underscorejs.org/underscore-min.js -O fileadmin/template/js/libs/underscore.min.js
echo "Enable install-mode"
touch typo3conf/ENABLE_INSTALL_TOOL
echo "Visit the page now in your browser to install TYPO3."
echo "After installation add constants.t3s-file to constants."
echo "=================================="
echo "Have fun now and get some coffee"
echo "=================================="
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment