github.com/sym3tri/etcd@v0.2.1-0.20140422215517-a563d82f95d6/Documentation/development-tools.md (about)

     1  # Development tools
     2  
     3  ## Vagrant
     4  
     5  For fast start you can use Vagrant. `vagrant up` will make etcd build and running on virtual machine. Required Vagrant version is 1.5.0.
     6  
     7  Next lets set a single key and then retrieve it:
     8  
     9  ```
    10  curl -L http://127.0.0.1:4001/v2/keys/mykey -XPUT -d value="this is awesome"
    11  curl -L http://127.0.0.1:4001/v2/keys/mykey
    12  ```