app module’s package.json, brings up the Docker services defined in modules/app/docker-compose.yml when present, discovers every spa, microservice, and api module under modules/, and runs them concurrently — api and microservice modules serve their entrypoint with hot reload, while spa modules run their dev server.
Usage
Examples
Run from the project root to start the Docker services and all runnable modules:--api, --microservice, or --spa. A bare flag keeps every module of that type, --<type>=a,b keeps only the named ones, and flags combine to start several types at once. The shared Docker stack still comes up first regardless of the flags.
Options
| Option | Description | Default |
|---|---|---|
--api | Run only the api modules. Bare flag keeps all of them; --api=a,b keeps the named ones. | All module types |
--microservice | Run only the microservice modules. Bare flag keeps all of them; --microservice=a,b keeps the named ones. | All module types |
--spa | Run only the spa modules. Bare flag keeps all of them; --spa=a,b keeps the named ones. | All module types |