Skip to Content
ExamplesSingle Repo

Single Repo Example

A standard single-project miso.json with TUI, env validation, concurrent tasks, and flags.

{ "$schema": "https://misojs.dev/miso.schema.json", "scripts": "./scripts", "tui": "tabbed", "repo": { "tasks": { "dev": { "concurrent": ["services"] } } }, "flags": { "install": ["--frozen-lockfile"], "dev": ["--env"] }, "env": { "path": ".env.local", "variables": { "PORT": "port", "DATABASE_URL": "url", "API_KEY": "string" } } }
Last updated on