Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jdsteinbach/elevensies
A starter kit for Eleventy (11ty.io) sites (name courtesy of hobbits)
https://github.com/jdsteinbach/elevensies
Last synced: 16 days ago
JSON representation
A starter kit for Eleventy (11ty.io) sites (name courtesy of hobbits)
- Host: GitHub
- URL: https://github.com/jdsteinbach/elevensies
- Owner: jdsteinbach
- Created: 2020-01-24T22:44:47.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T22:58:05.000Z (almost 2 years ago)
- Last Synced: 2024-10-04T04:42:00.127Z (about 1 month ago)
- Language: JavaScript
- Size: 1.66 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Elevensies
A starter kit for [Eleventy](https://11ty.dev) sites. Thanks to Tolkien for the name.
## Setting up
Click "Use this template" on [this repo](https://github/jdsteinbach/elevensies).
## Local Dev
Run the Eleventy site with:
```sh
$ npm run start
```Elevensies adds `cssnano` and `rollup-plugin-terser` to CSS & JS builds for production. To emulate this in local dev, use:
```sh
$ npm run start:prod
```## Build for Deploy
Build the Eleventy site to `_site` with:
```sh
$ npm run build
```Elevensies adds `cssnano` and `rollup-plugin-terser` to CSS & JS builds for production. To deploy without these tools, use:
```sh
$ npm run build:dev
```## Test Files
Sorry, I've still got test content files in this repo (`src/index.md`, `src/assets/js/index.js`, `src/assets/scss/styles.scss`). Overwrite them for your work.
_ToDo: move test content files to a test suite or something._