From 25b144b7ca3dba920290af019c71338d73fb1c8c Mon Sep 17 00:00:00 2001 From: Oleg Burov Date: Sun, 31 Jan 2016 23:24:16 -0800 Subject: [PATCH 1/5] Updated the repo description. --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d497094..0d6f967 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,13 @@ -# Sitecore Azure Startup +# Sitecore Azure Setup This repository contains an WebRole Entry Point that provides methods to run Sitecore code when a role instance is initialized. ## Preconfigured Items: -+ The App_Data folder with updated path to dataFolder variable; -+ Sitecore settings for scaled environment; -+ Sitecore SQL Server Session State provider. ++ The App_Data directory with included Sitecore's `\Data` content; ++ Patched the dataFolder variable that looks at the `\App_Data` directory; ++ Patched the `` pipeline for rebulding search indexes. ## Features: -+ Grand permission in the file system on a WebRole Instance; + Rebuild Search Indexes on very first start of a WebRole Instance. From 355a229765ccfcf02d29dad8b2191dede25f58e5 Mon Sep 17 00:00:00 2001 From: Oleg Burov Date: Sun, 31 Jan 2016 23:29:51 -0800 Subject: [PATCH 2/5] Updated the repo description second time. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0d6f967..286b074 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ This repository contains an WebRole Entry Point that provides methods to run Sit ## Preconfigured Items: + The App_Data directory with included Sitecore's `\Data` content; -+ Patched the dataFolder variable that looks at the `\App_Data` directory; -+ Patched the `` pipeline for rebulding search indexes. ++ Patched the `dataFolder` variable that looks at the `\App_Data` directory; ++ Patched the `` pipeline with a processor tp ebuld search indexes. ## Features: From e8902efe92e49c343815b11170a0508ea6e4f0d3 Mon Sep 17 00:00:00 2001 From: Oleg Burov Date: Tue, 2 Feb 2016 21:58:01 -0800 Subject: [PATCH 3/5] Moved the Sitecore.Azure.Setup.config to a separate directory. Moved the 'Sitecore.Azure.Setup.config' file to the 'App_Config\Include\Z.AzureWebApp' directory. --- .../Include/{ => Z.AzureWebApp}/Sitecore.Azure.Setup.config | 0 src/Sitecore.Azure.Startup/Sitecore.Azure.Startup.csproj | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/Sitecore.Azure.Startup/App_Config/Include/{ => Z.AzureWebApp}/Sitecore.Azure.Setup.config (100%) diff --git a/src/Sitecore.Azure.Startup/App_Config/Include/Sitecore.Azure.Setup.config b/src/Sitecore.Azure.Startup/App_Config/Include/Z.AzureWebApp/Sitecore.Azure.Setup.config similarity index 100% rename from src/Sitecore.Azure.Startup/App_Config/Include/Sitecore.Azure.Setup.config rename to src/Sitecore.Azure.Startup/App_Config/Include/Z.AzureWebApp/Sitecore.Azure.Setup.config diff --git a/src/Sitecore.Azure.Startup/Sitecore.Azure.Startup.csproj b/src/Sitecore.Azure.Startup/Sitecore.Azure.Startup.csproj index a8f1d73..714b847 100644 --- a/src/Sitecore.Azure.Startup/Sitecore.Azure.Startup.csproj +++ b/src/Sitecore.Azure.Startup/Sitecore.Azure.Startup.csproj @@ -58,7 +58,7 @@ - + Always From 01c9d8a758a99447f0f87ee90467176dabf94bb4 Mon Sep 17 00:00:00 2001 From: Oleg Burov Date: Sat, 13 Feb 2016 14:42:03 -0800 Subject: [PATCH 4/5] Added MIT License. --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..adf4c5c --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 Oleg Burov + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From 948e71b10e34a7273da4d6a1db884b79af4d6faa Mon Sep 17 00:00:00 2001 From: Oleg Burov Date: Thu, 4 Aug 2016 10:15:05 -0700 Subject: [PATCH 5/5] Added referene to NuGet package. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 286b074..96d640c 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ This repository contains an WebRole Entry Point that provides methods to run Sitecore code when a role instance is initialized. +[![NuGet version](https://img.shields.io/nuget/v/Sitecore.Azure.Setup.svg)](https://www.nuget.org/packages/Sitecore.Azure.Setup/) + ## Preconfigured Items: + The App_Data directory with included Sitecore's `\Data` content;