ship-em 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -8
- package/dist/index.js +2541 -745
- package/dist/lib.d.ts +252 -0
- package/dist/lib.js +1923 -0
- package/package.json +23 -4
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Deploy apps built with AI coding tools (Claude, Cursor, Bolt, Lovable) in 60 sec
|
|
|
7
7
|
## Quick Start
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npx
|
|
10
|
+
npx ship-em
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
That's it. Shipem detects your framework, builds your app, and deploys it to a live URL.
|
|
@@ -19,17 +19,17 @@ Next.js, Vite, React, Astro, SvelteKit, Nuxt, Remix, Gatsby, Express, FastAPI, F
|
|
|
19
19
|
## Commands
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
npx
|
|
23
|
-
npx
|
|
24
|
-
npx
|
|
25
|
-
npx
|
|
26
|
-
npx
|
|
27
|
-
npx
|
|
22
|
+
npx ship-em # Deploy your app
|
|
23
|
+
npx ship-em login # Authenticate with GitHub
|
|
24
|
+
npx ship-em logout # Log out
|
|
25
|
+
npx ship-em status # Check deployment status
|
|
26
|
+
npx ship-em logs # View build logs
|
|
27
|
+
npx ship-em down # Take your app offline
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
## How it works
|
|
31
31
|
|
|
32
|
-
1. **Run `npx
|
|
32
|
+
1. **Run `npx ship-em`** in your project directory
|
|
33
33
|
2. **AI detects your stack** — framework, build command, env vars
|
|
34
34
|
3. **Your app is live** — deployed to Cloudflare's global network
|
|
35
35
|
|