semitexa / ultimate
Semitexa Ultimate - full-stack project skeleton for SSR applications with docs and core modules
Package info
github.com/semitexa/semitexa-ultimate
Language:Shell
Type:project
pkg:composer/semitexa/ultimate
Requires
- php: ^8.4
- semitexa/api: 2026.04.05.0855
- semitexa/auth: 2026.04.05.0855
- semitexa/authorization: 2026.04.05.0855
- semitexa/blockchain: 2026.04.05.0855
- semitexa/cache: 2026.04.05.0855
- semitexa/core: 2026.04.05.0855
- semitexa/dev: 2026.04.05.0855
- semitexa/docs: 2026.04.03.1240
- semitexa/llm: 2026.04.05.0855
- semitexa/locale: 2026.04.05.0855
- semitexa/mail: 2026.04.05.0855
- semitexa/media: 2026.04.05.0855
- semitexa/orm: 2026.04.05.0855
- semitexa/rbac: 2026.04.05.0855
- semitexa/scheduler: 2026.04.05.0855
- semitexa/search: 2026.04.05.0855
- semitexa/ssr: 2026.04.05.0855
- semitexa/storage: 2026.04.05.0855
- semitexa/tenancy: 2026.04.05.0855
- semitexa/webhooks: 2026.04.05.0855
- semitexa/workflow: 2026.04.05.0855
Requires (Dev)
- semitexa/testing: 2026.04.05.0855
This package is auto-updated.
Last update: 2026-04-05 09:00:36 UTC
README
Full-stack project skeleton for SSR applications with Docker-based setup.
Purpose
The official starter project for building Semitexa applications. Provides a pre-configured Docker environment, example module, and all essential packages for a production-ready SSR application.
Role in Semitexa
Entry point for new projects. Pulls Core, Auth, Authorization, Tenancy, Locale, ORM, SSR, and Docs as direct dependencies. Developers create projects from this skeleton.
Documentation files under semitexa-ultimate are scaffold assets for generated projects, not the canonical home for framework internals.
Key Features
- Docker-first setup (no host PHP required)
- Swoole HTTP server entry point (
server.php) - Example Hello module with payload/handler/response
- Pre-configured Docker Compose (app, db, redis)
bin/semitexaCLI wrapper for container commands- Includes core auth/tenancy/i18n/ORM/SSR stack
Deferred SSE Defaults
Starter projects generated from semitexa/ultimate ship with safe SSR deferred defaults:
SSR_DEFERRED_PERSISTENT_SSE=falseSSR_DEFERRED_PERSISTENT_SSE_REQUIRE_AUTH=true
This means deferred SSR streams late HTML blocks once and closes the SSE connection. Persistent reconnect-capable SSE must be enabled explicitly and still requires an authenticated session by default.
robots.txt Fallback
Starter projects also inherit the SSR robots.txt fallback. If you do not add a real robots.txt file, Semitexa serves a minimal one automatically with crawler hints for machine-readable page documents.
Optional env hints:
ROBOTS_SITEMAP_URL=https://example.com/sitemap.xmlROBOTS_HOST=example.comAI_SITEMAP_URL=https://example.com/sitemap.json
Package Registry
semitexa/ultimate pins exact Semitexa package versions, but it intentionally does not hardcode a private Composer repository URL into composer.json. Generated projects are expected to resolve these internal packages through the Composer repository and credentials configured in the installation environment.
Notes
Run docker run --rm -v "$(pwd)":/app semitexa/installer install to scaffold a new project, then bin/semitexa server:start to start.