{ Saksham Alok }

Prerequisite for the 11ty Workshop

Sep 13, 2022
1 minute

Prerequisites

The Dependencies of these courses are mentioned below

GIT

  • GitHub Account
  • Git CLI installation see here
  • Setting your Git username for every repository on your computer

Open Terminal.

Set a Git username:

$ git config --global user.name "Mona Lisa"

Confirm that you have set the Git username correctly:

$ git config --global user.name
> Mona Lisa
  • Setting your email address for every repository on your computer Open Terminal. Set an email address in Git. You can use your GitHub-provided noreply email address or any email address.
$ git config --global user.email "email@example.com"

Confirm that you have set the email address correctly in Git:

$ git config --global user.email

email@example.com

Add the email address to your account on GitHub, so that your commits are attributed to you and appear in your contributions graph. For more information, see Adding an email address to your GitHub account."

  • Authenticating with GitHub from Git: see here

Volta

This repo uses Volta. Get it, and it’ll make your node life so much easier. Run this command (for linux and mac user)

curl https://get.volta.sh | bash

For windows user follow instructions here

  • To install yarn
volta install yarn

Netlify

Create an account on Netlify