in JfkWebApiSkills/JfkInitializer/Program.cs [75:107]
private static async Task<bool> RunAsync()
{
bool result = await DeleteIndexingResources();
if (!result)
return result;
result = await CreateBlobContainerForImageStore();
if (!result)
return result;
result = await CreateDataSource();
if (!result)
return result;
result = await CreateSkillSet();
if (!result)
return result;
result = await CreateSynonyms();
if (!result)
return result;
result = await CreateIndex();
if (!result)
return result;
result = await CreateIndexer();
if (!result)
return result;
if (ShouldDeployWebsite)
{
result = await DeployWebsite();
}
result = await CheckIndexerStatus();
if (!result)
return result;
result = await QueryIndex();
return result;
}