Make sure to have a modern version of Node installed:
Homebrew (Mac/Apple):
brew install node
Scoop (Windows):
scoop install nodejs
Second off, we will need to download/install/build Git for your machine:
Homebrew (Mac/Apple)
brew install git
Changes to the site should be done through contributing to the repo in an open source manner. If giving back to open source is new, we highly recommend this guide by the fine folks at GitHub.
Sign up or sign in to your GitHub Account
If you are using the GitHub Desktop client (Easy):
If you are using the command line (Harder):
Check the upstream remote by ‘cd ing’ into the project’s root folder and running the following command:
git remote -v
The output should read:
origin git@github.com:{your GitHub username}/codeforgso.github.io.git (fetch)
origin git@github.com:{your GitHub username}/codeforgso.github.io.git (push)
OR
origin https://github.com/{your GitHub username}/codeforgso.github.io.git (fetch)
origin https://github.com/{your GitHub username}/codeforgso.github.io.git (push)
The project is a Node application. All dependencies can be installed using the following command in the root of the repo. Note that you may need to install an npm extension if you have not yet.
npm install
With all code installed, the project can be started using the following:
npm run dev