Instructions for setting up VS Code to remote to a Linux server. In my case, it's Amazon Linux 2 running .net core. In Linux, at the command line, I created a project using: dotnet new web --name Employee Then on VS Code (running in Azure), connect to the Amazon Linux instance by: Install the Extension [...]
Month: November 2020
Spinning Up .NET Core on CentOS 8
Simple steps to get going. Create the Amazon Linux Instance via the Console, CloudFormation or the CLI.Log in to the instance using SSH or EC2 Instance Connect (browser).Run the following: sudo dnf upgrade -y sudo dnf install git -y sudo rpm -Uvh https://packages.microsoft.com/config/centos/8/packages-microsoft-prod.rpm sudo yum install dotnet-sdk-3.1 -y # optionally test the installation cd ~ [...]
Spinning Up .NET Core on Amazon Linux
Simple steps to get going. Create the Amazon Linux Instance via the Console, CloudFormation or the CLI.Log in to the instance using SSH or EC2 Instance Connect (browser).Run the following: sudo yum upgrade -y sudo yum install git -y sudo rpm -Uvh https://packages.microsoft.com/config/centos/7/packages-microsoft-prod.rpm sudo yum install dotnet-sdk-3.1 -y # optionally test the installation cd ~ [...]
A Note on Connecting GitHub Webhooks with Jenkins in AWS
Jenkins is a potential CI/CD solution for my company. I'll admit that I have it in for Azure DevOps. No one really understands it well. The person who set it up has left the company. Jenkins is likely the leader in this space. As part of this effort, I wanted to explore GitHub Webhooks as [...]
You must be logged in to post a comment.