Установщик выполняет пошаговую установку всех компонентов веб‑приложения RosGear — он автоматически проверяет системные требования, последовательно разворачивает необходимые модули (включая серверную часть, базу данных и клиентский интерфейс).
В проект каждой редакции веб-приложения RosGear добавлен установщик со своими настройками. Если ваш проект не имеет установщика, вы можете просто выполнить команду ниже:
$ composer require rosgear/rg-setup
или добавить в файл composer.json вашего проекта:
"require": {
"rosgear/rg-setup": "*"
}
После установки, вам необходимо будет добавить следующие файлы:
/queries/tables.php, таблицы используемые картой SQL запросов;/queries/variables.php, идентификаторы (переменные) запроса.
Эти файлы присутствуют в репозитории в качестве шаблонов, но не экспортируются.
The installer performs a step-by-step installation of all components of the RosGear web application—it automatically checks system requirements and sequentially deploys the necessary modules (including the server part, database, and client interface).
Each edition of the RosGear web application includes an installer with its own settings. If your project doesn't have an installer, you can simply run the command below:
$ composer require rosgear/rg-setup
or add to your project's composer.json file:
"require": {
"rosgear/rg-setup": "*"
}
After installation, you will need to add the following files:
/queries/tables.php, tables used by the SQL query map;/queries/variables.php, query identifiers (variables).
These files are present in the repository as templates, but are not exported.