Skip to content
33 changes: 0 additions & 33 deletions doc/reference/tooling/tt_cli/arguments.rst

This file was deleted.

8 changes: 4 additions & 4 deletions doc/reference/tooling/tt_cli/binaries.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
Showing a list of installed binaries
====================================

.. code-block:: bash
.. code-block:: console

tt binaries
$ tt binaries

``tt binaries`` shows a list of installed binaries and their versions.

Expand All @@ -14,9 +14,9 @@ Examples

Show a list of installed Tarantool versions:

.. code-block:: bash
.. code-block:: console

user@sample-server:~/test-env$ tt binaries
$ tt binaries
List of installed binaries:
• tarantool:
2.11.1 [active]
Expand Down
30 changes: 12 additions & 18 deletions doc/reference/tooling/tt_cli/build.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,19 @@
Building an application
=======================

.. code-block:: bash
.. code-block:: console

tt build [PATH] [flags]
$ tt build [PATH] [--spec SPEC_FILE_PATH]


``tt build`` builds a Tarantool application locally.

Flags
-----

.. container:: table

.. list-table::
:widths: 30 70
:header-rows: 0
Options
-------

* - ``--spec``
- Path to a ``.rockspec`` file to use for the current build
.. option:: --spec SPEC_FILE_PATH

Path to a ``.rockspec`` file to use for the current build

Details
-------
Expand Down Expand Up @@ -68,18 +62,18 @@ Examples

* Build the application ``app1`` from its directory:

.. code-block:: bash
.. code-block:: console

tt build
$ tt build

* Build the application ``app1`` from the ``simple_app`` directory inside the current directory:

.. code-block:: bash
.. code-block:: console

tt build simple_app
$ tt build simple_app

* Build the application ``app1`` from its directory explicitly specifying the rockspec file to use:

.. code-block:: bash
.. code-block:: console

tt build --spec app1-scm-1.rockspec
$ tt build --spec app1-scm-1.rockspec
Loading