From 8df1834c11c2ec2bd628e2e059d8d2775a0ffde0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Armando=20Garc=C3=ADa=20Sancio?= Date: Tue, 20 Jan 2015 21:52:18 +0000 Subject: [PATCH] DCOS-203 remove '>' from commands in README --- README.rst | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/README.rst b/README.rst index bad2400..18cb28d 100644 --- a/README.rst +++ b/README.rst @@ -8,68 +8,68 @@ Setup #. Make sure you meet requirements for installing packages_ #. Install the "wheel" project:: - > pip install wheel + pip install wheel #. Install the tox project:: - > pip install tox + pip install tox #. Clone git repo for the dcos cli:: - > git clone git@github.com:mesosphere/dcos-cli.git + git clone git@github.com:mesosphere/dcos-cli.git #. Change directory to the repo directory:: - > cd dcos-cli + cd dcos-cli #. Create a virtualenv for the dcos cli project:: - > virtualenv --prompt='(dcos-cli) ' env + virtualenv --prompt='(dcos-cli) ' env Configure Development Environment --------------------------------- #. Activate the virtualenv:: - > source env/bin/activate + source env/bin/activate #. Install project in develop mode:: - > pip install -e . + pip install -e . #. Export DCOS_PATH:: - > export DCOS_PATH=/env + export DCOS_PATH=/env #. Export DCOS_CONFIG:: - > mkdir $DCOS_PATH/config - > touch $DCOS_PATH/config/Dcos.toml - > export DCOS_CONFIG=$DCOS_PATH/env/config/Dcos.toml + mkdir $DCOS_PATH/config + touch $DCOS_PATH/config/Dcos.toml + export DCOS_CONFIG=$DCOS_PATH/env/config/Dcos.toml Running POC ----------- #. List command help:: - > dcos --help + dcos --help #. Run subcommand:: - > dcos config --help + dcos config --help Running Tests: -------------- #. Run tests using tox:: - > tox + tox #. Run tests using tox through docker:: - > CHECKOUT= \ - export DOCKER_REPO=mesosphere/python-tox \ - export DOCKER_TAG=v1 \ - sudo docker run -it -v $(CHECKOUT):/dcos-cli $(DOCKER_REPO):$(DOCKER_TAG) tox -c /dcos-cli/tox.ini + CHECKOUT= \ + export DOCKER_REPO=mesosphere/python-tox \ + export DOCKER_TAG=v1 \ + sudo docker run -it -v $CHECKOUT:/dcos-cli $DOCKER_REPO:$DOCKER_TAG tox -c /dcos-cli/tox.ini Notes -----