Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: добавлен пример использования initInfobase -> additionalInitializationSteps #130

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ pipeline1C()
]
}
```

## Загрузка эталонной базы

Реализована возможность загрузки эталонной базы на этапе инициализации информационной базы. Для этого необходимо указать в конфигурационном файле параметр `initInfobase` -> `templateDBPath`:
Expand All @@ -234,6 +235,13 @@ pipeline1C()
}
```

## Настройка первичного запуска информационной базы

После миграции, возможно запустить дополнительные команды, используя `initInfobase` -> `additionalInitializationSteps`

* Создать пользователя Администратор `"additionalInitializationSteps": ["run --command \"СоздатьАдминистратора;Имя=Администратор;ЗавершитьРаботуСистемы\" --execute $runnerRoot\\epf\\СоздатьПользователей.epf"]`;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

А в каком случае vrunner.init* не подойдут?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Так же подойдет, но, по-моему, в варианте через run проще для понимания.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Я промахнулся строкой с комментом. Я имел ввиду вторую строку, где запуск vanessa

* Запустить Vanessa c собственными параметрами `"additionalInitializationSteps": ["vanessa --settings ./tools/vrunner.first.json"]`.

## Настройка шага YAXUnit

* Добавить расширение `YAXUnit` и дополнительные расширения с тестами можно в `jobConfiguration.json` -> `initInfobase` -> `extensions`. Они будут загружены при инициализации ИБ.
Expand Down