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

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0-beta 2026-06-11 19:33 UTC

This package is auto-updated.

Last update: 2026-06-11 19:35:44 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

Rebuild after changes and preview locally:

./vendor/bin/freezed build
php -S localhost:8080 -t public

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).

Documentation

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

License

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