diff --git a/README.md b/README.md index 994c736b..173907c8 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,14 @@ This site will eventually be a community site for publishing and sharing Zend Fr * Copy `config/autoload/cache.local.php.dist` to `config/autoload/cache.local.php`. It's optional * Build the Database with ``php public/index.php migrations:migrate`` +### Vagrant setup + * Clone this project `git clone git://github.com/zendframework/modules.zendframework.com.git` + * Run `vagrant up` to build environment + * Copy `config/autoload/github.local.php.dist` to `config/autoload/github.local.php` and enter the Id and Secret provided during the application registration on GitHub + * Copy `config/autoload/database.local.php.dist` to `config/autoload/database.local.php` and enter your database (username: root, password: root) + * Copy `config/autoload/cache.local.php.dist` to `config/autoload/cache.local.php`. It's optional + * Build the Database with ``php public/index.php migrations:migrate`` + ### Development Mode To enable development mode: diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 00000000..0d3f2cb5 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,48 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +VAGRANTFILE_API_VERSION = '2' + +@script = <