From 7d619d6f7e4a5145778e8726f45d955d14aa4840 Mon Sep 17 00:00:00 2001 From: Adam Kliment Date: Tue, 8 Mar 2016 13:42:48 +0100 Subject: [PATCH] Removed vagrant doc, tests hook handlers --- VirtualDevelopmentEnvironment.md | 53 -------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 VirtualDevelopmentEnvironment.md diff --git a/VirtualDevelopmentEnvironment.md b/VirtualDevelopmentEnvironment.md deleted file mode 100644 index ec1134b17..000000000 --- a/VirtualDevelopmentEnvironment.md +++ /dev/null @@ -1,53 +0,0 @@ -# Virtual Development Environment - -It's recommended to use [Vagrant][] and [VirtualBox][] in order to achieve -consistent development environment across all contributors. - -## Installation - -1. Download and install latest [VirtualBox][]. -2. Download and install latest [Vagrant][]. -3. Clone GitHub repo: - - ```shell - $ git clone https://github.com/apiaryio/dredd - $ cd dredd - ``` - -4. Import the Vagrant box: - - ```shell - $ vagrant box add precise64 http://files.vagrantup.com/precise64.box - ``` - -5. Start virtual development environment: - - ```shell - $ vagrant up - ``` - - > **Note:** You may be prompted to enter your root password due - > to exporting shared folder over NFS to the virtual machine. - -6. SSH to the virtual development environment: - - ```shell - $ vagrant ssh - ``` - -7. You will find your project shared in `/vagrant` inside the virtual environment: - - ```shell - $ cd /vagrant - ``` - -8. Use your favorite local editor in your local folder to edit the code and - run tests in the virtual environment: - - ```shell - $ npm install && npm test - ``` - - -[Vagrant]: http://www.vagrantup.com/ -[VirtualBox]: https://www.virtualbox.org/