Skip to content

Commit

Permalink
Simplification
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleat committed Feb 24, 2023
1 parent a7517e4 commit b29ad7a
Showing 1 changed file with 7 additions and 20 deletions.
27 changes: 7 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,27 @@ A starter repository showing how to build a blog with the [Eleventy](https://www

## Getting Started

### 1. Clone this Repository
1. Clone this Repository

```
git clone https://github.com/11ty/eleventy-base-blog.git my-blog-name
```

### 2. Navigate to the directory
2. Navigate to the directory

```
cd my-blog-name
```

Specifically have a look at `eleventy.config.js` to see if you want to configure any Eleventy options differently.

### 3. Install dependencies
3. Have a look at `eleventy.config.js` to see if you want to configure any Eleventy options differently.
4. Install dependencies

```
npm install
```

### 4. Edit `_data/metadata.js`

### 5. Run Eleventy
5. Edit `_data/metadata.js` to change the site data.
6. Run Eleventy

Generate a production-ready build:

Expand All @@ -42,18 +40,7 @@ Or build and host locally on a local development server:
npx @11ty/eleventy --serve
```

Or in [debug mode](https://www.11ty.dev/docs/debugging/) to see all the internals:

```
# Mac OS/Linux/etc
DEBUG=Eleventy* npx @11ty/eleventy
# Windows
set DEBUG=Eleventy* & npx @11ty/eleventy
# Windows (Powershell in VS Code)
$env:DEBUG="Eleventy*"; npx @11ty/eleventy
```
Or you can run [debug mode](https://www.11ty.dev/docs/debugging/) to see all the internals.

## Features

Expand Down

0 comments on commit b29ad7a

Please sign in to comment.