Skip to docs content
Apito Blueprints catalog
Open Source
Free Cloud
Pro
SDK js@latest
Updated 2026-08-12

Apito Blueprints catalog

Editions: Open Source · Free Cloud · Pro (per pack)

Blueprints are portable schema packs under blueprints/<slug>/. They prove filesystem sync without embedding credentials or private app source.

Contract

  1. No secrets in the repo.
  2. CLI sync stages a draft — Console publishes.
  3. Content is not filesystem-synced — use each pack’s scripts/seed.mjs after publish.
  4. config.yml project_type / tenant flags must match the destination project.
  5. Flutter SDK is not on pub.dev — see Flutter quickstart.

Catalog

Slug Proof Stack Editions
newspaper-cms Chikly Newspaper Astro + JS Open Source, Free Cloud, Pro
flutter-finance Kisti Flutter SDK Free Cloud, Pro
tenant-saas-pos Rosna Astro + JS Pro (per-tenant DB)
mcp-saas Apito MCP Astro + JS Free Cloud, Pro

Sync

git clone https://github.com/apito-io/examples.git
cd examples

apito sync --from filesystem --to <account> --type schema --dir blueprints/<slug> --dry-run
apito sync --from filesystem --to <account> --type schema --dir blueprints/<slug> --yes

Then: Console → Schema ChangesPublish → configure .envnode scripts/seed.mjs.

Export live schema to disk:

apito sync --from <account> --to filesystem --type schema --dir ./export-dir

Layout

blueprints/<slug>/
  schema.json
  config.yml
  scripts/seed.mjs
  tests/
  app/          # companion scaffold (optional)

Full CLI truth: CLI.