summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2017-01-02 21:12:44 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2017-01-02 21:12:44 +0100
commit14ef0b274336ae5684e0ac2b03e53aa27d8a32fb (patch)
treec3060cfe9878a77f1f3a84f5d18878f0a3075507 /docs
parent951d8805aaf7fd81e223896c67869fd34769396b (diff)
Some getting started documentation
Diffstat (limited to 'docs')
-rw-r--r--docs/getting_started_command_line.rst49
1 files changed, 49 insertions, 0 deletions
diff --git a/docs/getting_started_command_line.rst b/docs/getting_started_command_line.rst
new file mode 100644
index 0000000..2c79701
--- /dev/null
+++ b/docs/getting_started_command_line.rst
@@ -0,0 +1,49 @@
+Getting Started (Command Line)
+==============================
+
+lesana can be used from the command line through the ``lesana`` command;
+for more details run ``lesana help``.
+
+Many commands will try to open some file in an editor: they will attempt
+to use, in this order, ``$EDITOR``, ``sensible-editor`` or as a fallback
+``vi``, which should be installed on any POSIX-like system.
+
+To start a new collection, create a directory and run ``lesana
+init`` into it::
+
+ mkdir $DIRECTORY
+ cd $DIRECTORY
+ lesana init
+
+It will create the basic file structure of a lesana collection,
+including a ``settings.yaml`` skeleton and it will initialize a git
+repository (use ``--no-git`` to skip this part and ignore all further
+git commands).
+
+It will then open ``settings.yaml`` in an editor: fill in your list of
+fields and all other data, save and exit.
+You are now ready to commit the configuration for your new collection::
+
+ git commit -m 'Collection settings'
+
+An empty collection is not very interesting: let us start adding new
+entries::
+
+ lesana new
+
+It will again open an editor on a skeleton of entry where you can fill
+in the values. When you close the editor it will print the entry id,
+that you can use e.g. to edit again the same entry::
+
+ lesana edit $ENTRY_ID
+
+After you've added a few entries, you can now search for some word that
+you entered in one of the indexed fields::
+
+ lesana search some words
+
+this will also print the entry ids of matching items, so that you can
+open them with ``lesana edit``.
+
+If you're using git, don't forget to add and commit the entries you've
+added (i.e. the files under ``items``).