cd ~/my-app # the CLI links the project to your cwd
insta project create demo # resources: postgres, storage, compute
insta secrets --print # the only way credentials leave the daemon
insta deploy --image nginx:alpine --port 80
insta branch create feat # copies the db + bucket, redeploys the app
insta policy set deploy approve # gate deploys behind a human
insta deploy --image nginx:alpine --port 80
# approval required for deploy — run: insta approvals approve <id>
insta branch delete feat # done with the task: throw the clone away
insta manifest shows each branch’s db / storage / compute and their URLs.