static site generator powered by Podlite markup
yarn && yarn devOpen http://localhost:3000 β demo site from pub directory.
docker run -it --rm -v ${PWD}:/app/pub -p 3000:3000 podlite/podlite-web devEdit index.pod6 and the page reloads automatically.
docker run --rm -v ${PWD}:/app/pub podlite/podlite-web export-zip > site.zip- static website generation with Next.js and Podlite markup
- live reload on file save
- embedded Podlite editor with live preview
=Mermaiddiagrams,=pictureimages/video,=toctable of contents=markdownblocks for familiar Markdown syntax- Docker support for zero-config setup
- export to zipped static site
# minimal site
POSTS_PATH='examples/01-minimal' yarn dev
# multi-page with links
POSTS_PATH='examples/02-pages' yarn dev
# blog with notes and React components
POSTS_PATH='examples/03-blog' yarn dev- custom domain:
SITE_URL=https://example.com - timezone:
TZ=Europe/London - custom content path:
POSTS_PATH='path/to/content'
cd examples/01-minimal
docker run --rm -v ${PWD}:/app/pub -p 3000:3000 \
-e 'SITE_URL=https://example.com' \
-e 'TZ=Europe/London' \
podlite/podlite-web export-zip > site.zip# install dependencies
yarn
# run dev server
yarn dev
# export to zip
yarn export-zip > file.zipCopyright (c) 2022β2026 Alexandr Zahatski
Released under a MIT License.

