summaryrefslogtreecommitdiff
path: root/demoapp/README.rst
blob: 89043a639069d59ea7d131423901a0462b3602ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Running demoapp
===============

Setup
-----

First, you need to create a virtual environment and switch to it::

 $ pip install virtualenv
 $ virtualenv .venv
 $ . .venv/bin/activate

Now, install the demo into the virtual environment::

 $ python setup.py install

Usage
-----

With cliff and the demo setup up, you can now play with it.

Here are a list of the commands available::

 XXX

Here is some example usage::

 XXX

Cleaning Up
-----------

Finally, when done, deactivate your virtual environment::

 $ deactivate