Repos & Templates
Create repos, copy templates, and push code.
Repos & Templates
Create an internal repo
bash
openpond repo create --name my-repo --path .Notes:
--pathcan point to an existing folder; the CLI will confirm if it is not empty.--emptycreates an app with no files (default).--opentoolcreates the repo with an OpenTool starter committed server-side.--deploy-on-pushenables deploys on every push.--tokenenables non-interactive git pushes.
Create from a template (copy openpondai)
bash
openpond repo create --name my-repo --path . --template openpondai/signal-bot --template-branch masterAdd env vars on create
bash
openpond repo create --name my-repo --path . --template openpondai/signal-bot --template-branch master --env '{"OPENTOOL_PUBLIC_HL_SIGNAL_BOT_CONFIG":"{...json...}"}'Push code
bash
git add . && git commit -m "init"
openpond repo push --path . --branch masteropenpond repo push temporarily switches the origin remote to a tokenized HTTPS URL, pushes, then restores it.