Posts

Showing posts from May, 2019

Jenkins Integration with Bit Bucket on AWS (EC2)

Image
In this article i am explaining Continuous Integration via Jenkins, here code repository is placed at bit bucket. First download jenkins and install on AWS EC2. First download jenkins for windows on AWS EC2 virtual Machine. After going through the installation process you will get running jenkins on your local host with 8080 port. Jenkins requires unlock with password laced at location C:\Program Files (x86)\Jenkins\secrets You just get the password from given location and unlock your jenkins. After unlocking the jenkins you will get the next screen for customize jenkins. Here you just select install suggested plugin tab. In next step you just download git and install on your system from location https://git-scm.com/download/win Open your bit bucket account and get the repository URL. Use this URL in jenkins configuration fir bit bucket. Copy this clone and open global tool configuration under manage jenkins. Her

Dot Net Core app Deployment in Azure

Image
DevOps Projects creates a CI/CD pipeline in Azure DevOps. You can create a new Azure DevOps organization or use an existing organization. DevOps Projects also creates Azure resources in the Azure subscription of your choice. Sign in to the Microsoft Azure portal. In the left pane, select Create a resource icon in the left navigation bar, and then search for DevOps Projects. Select Create. Select Dot net option from next window. In next screen select dot net core option for further process. In next screen you will get available option for service. Here you can choose option as per your requirement. In my case I am choosing windows web app and moving to next screen. Select Next. Web App on Windows is the default deployment target. Optionally, you can choose Web App on Linux or Web App for Containers. The application framework, which you chose previously, dictates the type of Azure 

Dot Net Reflector to decompile Sitecore.Kernal assembly

Image
.NET Reflector is a class browser, decompile and static analyzer for software created with .NET Framework, or a utilities for developers. It was the first CLI assembly browser. [Citation needed] It can be used to inspect, navigate, search, analyze, and browse the contents of a CLI Component such as an assembly and translates the binary information to a human-readable form Download reflector from below URL https://www.red-gate.com/dynamic/products/dotnet-development/reflector/download Install the reflector once download is completed. After successful installation of Reflector you just open required DLL or assembly and check the code which is required for you. In my requirement I need to work with Sitecore kernel dll so I open this assembly in reflector. Here you can get any code which is related to assembly and also you can override methods which are defined

Python program on Pycharm (IDE for Python)

Image
Pycharm is an IDE for Python developer. To work on Pycharm you just just download it from https://www.jetbrains.com/pycharm/ and install in your system. Download community or professional version as per your requirement. Install the Pycharm once download is completed and follow the steps to install. Create a new project from Pycharm IDE. Create a new python file in newly created project.   You will get it in programs and external libraries as well. Write some sample code in your [ython file as I had written Print(“Sharjeel’s work!!!”) Execute the code using run option available in Pycharm window. In this way you can use Pycharm IDE to write and run Python programs. I will share more on python in my next article and try to explore more option on pycharm. Happy Learning!!!