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
- No secrets in the repo.
- CLI sync stages a draft — Console publishes.
- Content is not filesystem-synced — use each pack’s
scripts/seed.mjsafter publish. config.ymlproject_type/ tenant flags must match the destination project.- 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 Changes → Publish → configure .env → node 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.