cubbypro
v0.1.16
Published
Cubby CLI - Deploy your apps
Maintainers
Readme
cubbypro
Deploy your apps with one command. Cubby handles auth, database, and infrastructure.
Installation
npm install -g cubbyproQuick Start
# 1. Login (opens browser for passwordless auth)
cubby login
# 2. Create a new app from template
cubby init my-app
# 3. Deploy to production
cd my-app && cubby deployYour app is live at https://my-app.yourname.cubby.pro
Commands
| Command | Description |
|---------|-------------|
| cubby login | Authenticate via email magic link |
| cubby logout | Clear stored credentials |
| cubby whoami | Show current user |
| cubby init <name> | Create new app from template |
| cubby dev | Start local development with database |
| cubby deploy | Deploy to production |
| cubby apps | List deployed apps |
| cubby delete <app> | Remove a deployed app |
| cubby check | Validate app before deploy |
| cubby secrets set <key> <value> | Set production secret |
Security
Credentials are stored in ~/.config/cubbypro/credentials.json with 0600 permissions (read/write for owner only). The file contains:
- Access token (1h expiry)
- Refresh token (30d expiry)
- Username
API requests automatically refresh expired access tokens.
Documentation
Full documentation at https://cubby.pro
License
MIT
