Search by

neuedaten / freezed-skeleton

Starter skeleton for Freezed — a static site generator powered by TYPO3 Fluid.

Maintainers

Package info

github.com/neuedaten/freezed-skeleton

Language:Shell

Type:project

pkg:composer/neuedaten/freezed-skeleton

Transparency log

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

v0.4.0-beta 2026-09-06 20:17 UTC

This package is auto-updated.

Last update: 2026-09-06 20:17:35 UTC


README

Starter project for Freezed — a static site generator powered by the TYPO3 Fluid template engine.

Create a site

composer create-project --stability=beta neuedaten/freezed-skeleton my-site
cd my-site
./vendor/bin/freezed build
# open public/index.html

create-project automatically scaffolds the project (freezed install) with the default theme and example pages.

Develop

Build, serve and rebuild on every change (development mode):

./vendor/bin/freezed run
# http://localhost:8080

Or run the steps separately:

./vendor/bin/freezed build     # render into public/
./vendor/bin/freezed serve     # serve public/ on :8080
./vendor/bin/freezed watch     # rebuild when a source file changes

Or use Docker (no local PHP required):

docker compose up --build
# http://localhost:8080

Rebuild inside the running container:

docker compose exec freezed ./vendor/bin/freezed build

What's here

.
├─ composer.json          # requires neuedaten/freezed
├─ Dockerfile             # PHP 8.3 + Composer dev image
├─ docker-compose.yml     # builds + serves public/ on :8080
└─ docker/entrypoint.sh   # install → scaffold → build → serve

After freezed install, your site lives in content/, themes/, static/ and freezed.config.php. The build output goes to public/ (git-ignored).

Set siteUrl in freezed.config.php and enable sitemap to get a public/sitemap.xml; link between pages with <freezed:link href="CONTENT:pages/about">…</freezed:link>. See the configuration and content guides.

Documentation

Full docs are in the engine repository: neuedaten/freezed → docs.

License

GPL-2.0-or-later © Bastian Schwabe / neuedaten