Hosting Gemini CLI Extension
Deploy static websites, landing pages, and prototypes instantly from Gemini CLI. Free, no account needed.
gemini
$ gemini extensions install github.com/shipstatic/plugin ✓ ShipStatic installed > put this folder online ⚒ deployments_upload ./ Your site is live: https://brave-otter-x1y2z3a.shipstatic.com
Gemini CLI Extension
Ask Gemini to ship it.
One install gives Gemini every ShipStatic tool, running on your own machine. Ask it to deploy the folder you are in and get back a live URL.
- All fifteen ShipStatic tools inside Gemini CLI
- Publish without an account
- Deploys folders straight from your machine
- API key stored in your system keychain
$
gemini extensions install https://github.com/shipstatic/plugin
Configuration as Code
One file. Full control.
Drop a ship.json in your project root to configure rewrites, redirects, and custom headers. No dashboard clicks, no deploy flags, just code.
SPA Rewrites
Route all paths to index.html for client-side routing.
Redirects
Permanent or temporary redirects with status codes.
Custom Headers
Set CORS, CSP, cache-control, and any other HTTP header.
ship.json
{
"rewrites": [
{
"source": "/**",
"destination": "/index.html"
}
]
}