Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 813 Bytes

README.md

File metadata and controls

56 lines (38 loc) · 813 Bytes

Red Hat Israel

Getting Started

1. Clone this Repository

git clone https://github.com/RedHat-Israel/RedHat-Israel.github.io

2. Navigate to the directory

cd RedHat-Israel.github.io

3. Install dependencies

npm ci

Add GitHub Personal Access Token

If you want to develop against the GitHub API, generate a Personal Access Token and save it in a .env in the repository root. DO NOT COMMIT THIS FILE.

example:

SITE_GITHUB_TOKEN=your_github_pat_here

4. Run Eleventy Dev Server

build and host locally for local development

npm start

Or build the site for deployment

npx @11ty/eleventy

Or build automatically when a template changes:

npx @11ty/eleventy --watch

Or in debug mode:

DEBUG=* npx @11ty/eleventy