Shubham SharmaforThe Build & Deploy Journalarticles-shubham.hashnode.dev·Nov 20, 2024Setting Up Jenkins: Step-by-Step Guide for BeginnersIntroduction Jenkins is a powerful open-source tool that automates the software development process, specially tasks like building, testing and deploying applications. It is premier face of Continuous Integration (CI) and Continuous Delivery (CD) in ...DiscussJenkins
Faria Karimfariakarim.hashnode.dev·Nov 1, 2024Ballerina Installation and Project Setup Simplified for BeginnersIntroduction Ballerina is an open-source, cloud-native programming language that makes it easy to create and deploy services with a focus on data handling and integration. Whether you’re building APIs, handling data streams, or creating complex appli...DiscussInstallation
Amit Kumarenlightenwithamit.hashnode.dev·Oct 22, 2024Quick Fixes for Docker's Manifest Not Found Error👋Introduction I was working on setting up Sitecore Headless using Docker, and was using the following Sitecore version with Sitecore modules and the host machine: Sitecore VersionSitecore 10.3 Sitecore ModulesSitecore PowerShell Extension, Si...Discuss·74 readsSitecore
Abhay Pratap Mauryaabhayapm.hashnode.dev·Oct 20, 2024How to Setup MySQL on Fedora systemStep 1: Install MySQL Server Open a terminal and run the following command to install MySQL: sudo dnf install mysql-server This will install the MySQL server and client packages. Step 2: Start and Enable MySQL Service Once MySQL is installed, you ne...Discuss·1 likeDatabasesFedora
Raaj Aryanraajaryan.tech·Oct 7, 2024Mastering Next.js: Complete Setup, Features, and Advanced TipsClick here to read this blogDiscussNext.js
Pratiksha Dhotreargo-cd-project.hashnode.dev·Oct 7, 2024Argo CD Setup and First ProjectPrerequisite: Install Minikube Install Kubectl Steps To Set Argo CD Note: for more info for minikube use link: https://argo-cd.readthedocs.io/en/stable/ Set Up a minikube server with Argo CD kubectl create namespace argocd kubectl apply -n...DiscussArgoCD
Hardik Chotaliyahardikchotaliya.hashnode.dev·Oct 4, 2024WebdriverIO Configuration Guide: Setting Up Your Test Automation FrameworkIn this blog, we will dive into setting up and configuring WebdriverIO V9, which forms the foundation of your Automation framework. WebdriverIO Setup: WebdriverIO can be installed and configured in two main ways: Custom configuration via the termina...Discuss·144 readsWebdriverIOwebdriverio-setup
David Gostindgostin.hashnode.dev·Oct 2, 2024Setting up a Node.js project with a proper .gitignore fileMake sure to set up a proper .gitignore before initializing your node project git repository. There are certain files that you do not want to check into git. To set up a Node.js project with a proper .gitignore file, follow these steps: 1. Initiali...DiscussGit
Dilip PatelforDilip Patel's C++ blogcppmastery.hashnode.dev·Sep 30, 2024C++ InstallationThis article provides a step-by-step guide to installing and setting up a C++ development environment on Windows and macOS using Visual Studio Code. It covers downloading and installing a C++ compiler, setting up the file path, installing Visual Stud...DiscussC++ Basicscpp
Gaurav Singhgauravsingherror.hashnode.dev·Sep 28, 2024Setting up MySql with MacOsStep1: Installation from brew. brew install mysql Step2: Run this command if we don't want to run MySql in background. /opt/homebrew/opt/mysql/bin/mysqld_safe --datadir=/opt/homebrew/var/mysql or for running it in background or at login run this co...Discuss·1 likewebdev