Tuurlijk / TryNeos

A Vagrant box to try out the most recent NEOS releases.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TryNeos

A Vagrant box to try out the most recent NEOS releases.

Just run vagrant up and visit:

Flattr this git repo

Installation

Installation is pretty straight forward. You're just a couple of steps away from 'great success'.

1). Clone TryNeos and cd into it:

git clone https://github.com/Tuurlijk/TryNeos.git
cd TryNeos

2). Then boot the machine:

vagrant up

3). Now you can visit:

You can login as user admin with the password supersecret.

How do I get onto the box?

You can login by doing a vagrant ssh. That user has full sudo privileges. Or you can ssh vagrant@local.neos.io 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 vagrant@local.neos.io 'cat >> .ssh/authorized_keys'

Now you will be able to get into the box as user vagrant without supplying a password.

MailCatcher

MailCatcher 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://local.neos.io:1080 to see the mail that's arrived so far.

Can't connect after the vagrant up?

This box needs internet connectivity to resolve the local.neos.io 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 2.0.6.local.neos.io
  • 192.168.144.120 2.1.2.local.neos.io

Contributing

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.

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. 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.

About

A Vagrant box to try out the most recent NEOS releases.