@monzingo89/build-today-wizard
v0.1.0
Published
Interactive architecture wizard that builds a stack plan, Mermaid graph, and .env bootstrap files.
Maintainers
Readme
build-today-wizard
Interactive npm CLI that asks what you're building, maps your stack choices, generates a Mermaid diagram, and bootstraps .env + contact_info.json for first-run setup.
Install
- Run with npx:
npx @monzingo89/build-today-wizard - Or install globally:
npm i -g @monzingo89/build-today-wizard
Run locally
npm installnpm start
Preset profiles
Use a preset to prefill a common stack and optionally skip those prompt questions:
npm start -- --preset microsoftnpm start -- --preset googlenpm start -- --preset aws
Other CLI options:
npm start -- --list-presetsnpm start -- --help
When a preset is selected, the wizard asks whether to use preset values directly (ask only missing values) or keep prompts interactive with preset defaults preselected.
What it does
- Asks for:
- build target (
script,app,webpage) - app framework (
Ionic,Cordova) when target isapp - Ionic API client (
Angular,React,Vue,Blazor) when app uses Ionic - identity provider (
Firebase,Microsoft Entra External ID) - auth methods (multi-select)
- API tech, database, repo host, domain host, API docs, email capability
- build target (
- Produces Mermaid output and writes
today-build-plan.mmd. - Once approved, asks for environment secrets one-by-one.
- Writes
.env,.env.example, and optionalcontact_info.jsonfor Azure domain creation.
Included presets
microsoft: Ionic + Blazor + Microsoft Entra External ID + C# + Microsoft SQL + GitHubgoogle: Ionic + Angular + Firebase + Node + Firestore + GitHubaws: Cordova + Firebase + Go + MySQL + GitLab
Azure domain command template
If Azure domain automation is enabled, the wizard prepares values for:
az appservice domain create --resource-group <need-resource-group> --hostname example.com --contact-info @contact_info.json --accept-terms
Publish
- Update package name/version in
package.json. - Login to npm:
npm login. - Publish:
npm publish --access public.
