Single App Example
A standard single-app miso.json — TUI, env validation, and flags, with a dev task that brings the app up alongside convex dev (declared as a convex script).
>miso.json
{
"$schema": "https://misojs.dev/miso.schema.json",
"scripts": "./scripts",
"tui": "tabbed",
"repo": {
"tasks": {
"dev": { "concurrent": ["convex"] }
}
},
"flags": {
"install": ["--frozen-lockfile"],
"dev": ["--env"]
},
"env": [
{
"scope": "global",
"path": ".env.local",
"variables": {
"PORT": "port",
"DATABASE_URL": "url",
"API_KEY": "string"
}
}
]
}Last updated on