neuedaten / freezed-skeleton
Starter skeleton for Freezed — a static site generator powered by TYPO3 Fluid.
Package info
github.com/neuedaten/freezed-skeleton
Language:Shell
Type:project
pkg:composer/neuedaten/freezed-skeleton
Requires
- php: ^8.2
- neuedaten/freezed: ^0.4.0-beta
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
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