@harounabidi/deploily
v0.0.2
Published
Lightweight CLI for the Deploily platform — create, develop, and deploy projects.
Downloads
272
Readme
Deploily
Lightweight CLI for the Deploily platform — create, develop, and deploy projects.
Install
Use npx to run the published package:
pnpx @harounabidi/deploily create my-projectLocal development (from repo):
pnpm install
pnpm run start # run CLI directly with tsx
pnpm run build # compile to dist/
node dist/index.js create my-projectUsage
After install or build the deploily binary exposes these commands:
deploily create <name>— scaffold a new project (writesdeploily.toml).deploily deploy— deploy the current project (stubbed deploy flow).deploily dev— run local development server (stub).deploily bucket <create|list|delete> [name]— manage buckets.deploily db <migrate|reset>— database helpers.deploily ai [prompt]— run AI helper (stub).
Examples
# create a project
deploily create example-app
# list buckets
deploily bucket list
# run migrations
deploily db migrate
# deploy
deploily deployDevelopment
- Build:
pnpm run build(emitsdist/) - Start (no build):
pnpm run start(usestsxto runsrc/index.ts)
Publishing
This package is published to npm as @harounabidi/deploily. To publish updates:
pnpm run build
npm version patch # bump version
npm publish --access public