Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/focusaurus/peterlyons.com-zola
My work web site built with zola static site generator
https://github.com/focusaurus/peterlyons.com-zola
Last synced: 12 days ago
JSON representation
My work web site built with zola static site generator
- Host: GitHub
- URL: https://github.com/focusaurus/peterlyons.com-zola
- Owner: focusaurus
- Created: 2018-12-25T16:28:41.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-08-28T11:21:58.000Z (3 months ago)
- Last Synced: 2024-08-28T12:34:59.427Z (3 months ago)
- Language: HTML
- Size: 5.4 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# peterlyons.com static site generator
**Tech stack**
- zola static site generator
- tera templates
- node/npm for some client side javascript apps and bundling
- reveal.js for slides in markdown
- typescript for plus party app## How to run locally: initial setup
- Install the prerequisites
- bash
- git
- node
- (see .nvmrc for correct version)
- `git clone` the repo
- `cp .env.example .env`. Edit `.env` if necessary but usually it's fine as is.
- Run `bin/build.sh`
- This will install zola and run npm if needed
- Run `bin/serve.sh` for normal development
- Site opens to http://localhost:3333 by default## How to run unit tests
- `bin/test.sh`
## How to run content tests
We have some content smoke tests (using node-tap framework) that:
- build the static site
- start a transient web server to serve the files
- load lots of pages, parse HTML, and check for particular content keywords or CSSselectors being present in the HTML`bin/test-content.sh`
## How to run redirect integration tests
- These should be run against a working server, which could be local development server, a netlify deploy preview, or production
- `URI=http://localhost:3333 tap tests/redirects-tap.js`
- or `bin/test-redirects.sh` for local development## How to stub out a new blog post
- `bin/new-post.sh "Post Title Goes Here"`
## How to develop using docker
- Install the prerequisites
- bash
- git
- docker
- run `./bin/docker-run.sh bin/serve.sh`
- Site is at [http://localhost:3333]() by default
- For all the other development tasks, the docker version starts with `bin/docker-run.sh` then the script you would run locally.
- `bin/docker-run.sh bin/test.sh` for example
-
## How to run javascript tests(container) `./scripts-container/build.sh && npm test`
## How to update dependencies: npm
`npx npm-check-updates -u`
## How to update zola
Edit `ZOLA_VERSION` in `scripts-container/build.sh`