From 9fa3ff85f227e5d7c14485feb098cfcd464b7c74 Mon Sep 17 00:00:00 2001 From: Samuel Gaist <samuel.gaist@idiap.ch> Date: Thu, 10 Jan 2019 09:13:30 +0100 Subject: [PATCH] [utils][commands] Fix install command documentation Fixes #442 --- beat/web/utils/management/commands/install.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/beat/web/utils/management/commands/install.py b/beat/web/utils/management/commands/install.py index 7c918a5d8..bd64ac9ea 100755 --- a/beat/web/utils/management/commands/install.py +++ b/beat/web/utils/management/commands/install.py @@ -32,12 +32,12 @@ Examples: To install advanced databases, formats, libraries, algorithms, toolchains, experiments and plotters: - $ manage.py install -v1 advanced + $ ./bin/django install -v1 advanced To install only test databases, formats, libraries, algorithms, toolchains, experiments and plotters: - $ manage.py install -v1 test + $ ./bin/django install -v1 test Note: If you need to specify your own path to the directories containing the databases, you could just create a simple JSON file as follows:: @@ -49,7 +49,7 @@ Examples: Then just use the previous script with the option ``--database-root-file``:: - $ manage.py install -v1 --database-root-file=<file.json> + $ ./bin/django install -v1 --database-root-file=<file.json> By default, paths to the root of all databases are set to match the Idiap Research Institute filesystem organisation. -- GitLab