A smallish (193 MB) Vagrant box to try out the most recent TYPO3 release.
Just run vagrant up
and visit:
- Virtualbox or another virtualization product - Free!
- Vagrant - Version 1.8.4 or later is needed - Free!
- Vagrant alpine plugin -
vagrant plugin install vagrant-alpine
without git
- Download the latest TYPOTry zip file
- Extract the zip file
- Open a command shell
- Go into the new directory
- Run
vagrant up
with git
- Open a command shell
- Clone the repository:
git clone https://github.com/Tuurlijk/TYPOTry.git
- Go into the new directory:
cd TYPOTry
- Start the machine:
vagrant up
Now you can visit:
You can login as user admin
with the password supersecret
.
You can login by doing a vagrant ssh
. That user has full sudo privileges. Or you can ssh [email protected]
using password vagrant
.
To add your public ssh key to the authorized_keys file of the vagrant user, you can execute the following command:
cat ~/.ssh/id_rsa.pub | ssh [email protected] 'cat >> .ssh/authorized_keys'
Now you will be able to get into the box as user vagrant without supplying a password.
MailHog runs a super simple SMTP server which catches any message sent to it to display in a web interface. This makes it easy to test forms without actually sending mail to the 'real' mail address. Set your favourite app to deliver to smtp://127.0.0.1:1025 instead of your default SMTP server, then check out http://mail.local.typo3.org to see the mail that's arrived so far.
This box needs internet connectivity to resolve the local.typo3.org domain name to the IP of the box. If you are not connected to the Internet you will need to add the following entries to your hosts file:
192.168.144.120 9.1.0.local.typo3.org
- On Windows machines you may need to enable VT-X in the bios of your machine. vt-x is disabled in the BIOS, you can disable this in the image settings under system tab processor, PAE/NX disable or you can enable this setting in your BIOS. Check: http://www.sysprobs.com/disable-enable-virtualization-technology-bios and check your windows version ( minimal a Pro-edition) or Enable without BIOS.
- Vagrant may complain about a 'space' character in your path. Ruby can't handle this. You will need to move the Vagrant box to a path without spaces and try again.
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests and examples for any new or changed functionality.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
If you wish to work on the code that built this box, then head over to https://github.com/Tuurlijk/TYPO3.Packer.