Project Bootstrapping

Make a new directory to hold the files of your Microbus-based project.

mkdir myproject
cd myproject

Instruct your coding agent to:

curl the workflow at https://microbus.io/bootstrap and follow it

Your project structure will now look like this:

myproject/
├── .claude/                    # Claude Code setup
   ├── rules/                  # Instructions for coding agents
   └── skills/                 # Claude Code skills
├── .vscode/
   └── launch.json             # VSCode launch file
├── main/
   ├── env.yaml                # Environment variables for main app
   └── main.go                 # Main application
├── .gitignore
├── CLAUDE.md                   # Instructions for Claude
├── config.yaml                 # Configuration properties
├── config.local.yaml           # git ignored configuration properties
├── env.yaml                    # Environment variables
├── env.local.yaml              # git ignored environment variables
├── go.mod
└── go.sum