[doc] add info about create-example-vocabs paster command to readme
[doc] add info about create-example-vocabs paster command to readme

file:a/README.rst -> file:b/README.rst
--- a/README.rst
+++ b/README.rst
@@ -31,7 +31,6 @@
 
 Then activate it by setting ``ckan.plugins = example`` in your main ``ini``-file.
 
-
 Orientation
 ===========
 
@@ -63,4 +62,19 @@
   updating. In the meantime, follow the instructions at: 
   http://readthedocs.org/docs/ckan/en/latest/forms.html
 
+Example Tags With Vocabularies
+==============================
 
+To add example tag vocabulary data to the database, from the ckanext-example directory run:
+
+::
+
+    paster example create-example-vocabs -c <path to your ckan config file>
+
+This data can be removed with
+
+::
+
+    paster example clean -c <path to your ckan config file>
+
+

--- a/ckanext/example/commands.py
+++ b/ckanext/example/commands.py
@@ -36,6 +36,8 @@
 
         if cmd == 'create-example-vocabs':
             self.create_example_vocabs()
+        if cmd == 'clean':
+            self.clean()
         else:
             log.error('Command "%s" not recognized' % (cmd,))
 
@@ -76,3 +78,6 @@
             data = {'name': 'Steve Lewis', 'vocabulary_id': vocab['id']}
             get_action('tag_create')(context, data)
 
+    def clean(self):
+        log.error("Clean command not yet implemented")
+