MySQL minimal
examples/mysql-minimal.aip — small app with database mysql for the MySQL Preview emitter.
Tiers: Core + Infra (api, seed).Requires:
database mysql (PostgreSQL emit targets use other examples).
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Minimal MySQL fixture for aip emit mysql
examples/mysql-minimal.aip — small app with database mysql for the MySQL Preview emitter.
Tiers: Core + Infra (api, seed).database mysql (PostgreSQL emit targets use other examples).
node packages/cli/dist/cli.js validate examples/mysql-minimal.aip
node packages/cli/dist/cli.js emit mysql examples/mysql-minimal.aip
// AI Parlance — minimal MySQL fixture for `aip emit mysql`
app MysqlDemo @0.1 {
database mysql
auth api_key
}
entity Item {
timestamps
name: string required
sku: string required unique
active: bool default(true)
}
crud Item
api {
prefix "/v1"
format json
}
seed Item {
name: "Sample"
sku: "SKU-1"
active: true
}
