##// END OF EJS Templates
pull-requests: add merge check that detects WIP marker in title. This will prevent merges in such case....
pull-requests: add merge check that detects WIP marker in title. This will prevent merges in such case. Usually WIP in title means unfinished task that needs still some work. This pattern is present in Gitlab/Github and is already quite common.

File last commit:

r3290:ac4e4e5a default
r4099:c12e69d0 default
Show More
tools-overview.rst
66 lines | 2.1 KiB | text/x-rst | RstLexer
/ docs / tools / tools-overview.rst
project: added all source files and assets
r1 .. _tools-overview:
|RCT| Overview
--------------
To install |RCT| correctly, see the installation steps covered in
:ref:`install-tools`, and :ref:`config-rhoderc`.
Once |RCT| is installed, and the :file:`/home/{user}/.rhoderc` file is
docs: added SAML documentation....
r3290 configured you can then use |RCT| on each |RCE| instance to carry out admin
project: added all source files and assets
r1 tasks. Use the following example to configure that file,
and once configured see the :ref:`tools-cli` for more details.
.. note::
|RCT| require |PY| 2.7 to run.
.. code-block:: bash
# Get the status of each instance you wish to use with Tools
(venv)brian@ubuntu:~$ rccontrol status
- NAME: momentum-1
- STATUS: RUNNING
- TYPE: Momentum
- VERSION: 3.0.0-nightly-momentum
- URL: http://127.0.0.1:10003
- NAME: momentum-3
- STATUS: RUNNING
- TYPE: Momentum
- VERSION: 3.0.0-nightly-momentum
- URL: http://127.0.0.1:10007
Example :file:`/home/{user}/.rhoderc` file.
.. code-block:: ini
# Configure the .rhoderc file for each instance
# API keys found in your instance
[instance:enterprise-1]
api_host = http://127.0.0.1:10003/
api_key = 91fdbdc257289c46633ef5aab274412911de1ba9
repo_dir = /home/brian/repos
[instance:enterprise-3]
api_host = http://127.0.0.1:10007/
api_key = 5a925f65438d29f8d6ced8ab8e8c3d305998d1d9
repo_dir = /home/brian/testing-repos/
Example usage of |RCT| after |RCE| 3.5.0. From this version onwards |RCT| is
packaged with |RCE| by default.
.. code-block:: bash
rcextensions: new builtin rcextensions....
r3133 $ .rccontrol/enterprise-4/profile/bin/rhodecode-api --instance-name=enterprise-4 get_ip [11:56:57 on 05/10/2018]
project: added all source files and assets
r1
rcextensions: new builtin rcextensions....
r3133 {
"error": null,
"id": 1000,
"result": {
"server_ip_addr": "1.2.3.4",
"user_ips": []
}
}