Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gibbs/gibbs.github.io
Personal Eleventy website repository
https://github.com/gibbs/gibbs.github.io
11ty eleventy eleventy-website
Last synced: about 1 month ago
JSON representation
Personal Eleventy website repository
- Host: GitHub
- URL: https://github.com/gibbs/gibbs.github.io
- Owner: gibbs
- Created: 2017-06-23T13:55:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-01-14T22:40:52.000Z (10 months ago)
- Last Synced: 2024-10-03T09:42:58.579Z (about 2 months ago)
- Topics: 11ty, eleventy, eleventy-website
- Language: CSS
- Homepage: https://dangibbs.uk/
- Size: 6.4 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dangibbs.uk
![Deploy](https://github.com/gibbs/gibbs.github.io/actions/workflows/deploy.yml/badge.svg)
![Tests](https://github.com/gibbs/gibbs.github.io/actions/workflows/test.yml/badge.svg)
![Version](https://img.shields.io/github/package-json/v/gibbs/gibbs.github.io)
![Size](https://img.shields.io/github/repo-size/gibbs/gibbs.github.io)Personal static website repository built with
[Eleventy](https://github.com/11ty/eleventy).## Build
Production builds are committed to the `gh-pages` branch by the `deploy`
workflow. This is triggered on push and pull requests to the `master`
branch.To build locally to the `docs` directory use:
```bash
npm run build
```## Develop
Run the 11ty web server:
```bash
npm run serve
```## Lint
Lint javascript, website frontmatter and YAML files:
```bash
npm run lint# Individually
npm run lint:frontmatter
npm run lint:js
npm run lint:yaml
```## Test
Run the full test suite:
```bash
npm run test# Individually
npm run test:acceptance
npm run test:e2e
```For a full list of commands use `npm run`