@korajs/cli 0.1.15 → 0.2.0
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 +49 -0
- package/dist/bin.cjs +2517 -332
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +12 -10
- package/dist/bin.js.map +1 -1
- package/dist/chunk-E4JG7THU.js +1550 -0
- package/dist/chunk-E4JG7THU.js.map +1 -0
- package/dist/chunk-KTSRAPSE.js +752 -0
- package/dist/chunk-KTSRAPSE.js.map +1 -0
- package/dist/chunk-ZGYRDYXS.js +609 -0
- package/dist/chunk-ZGYRDYXS.js.map +1 -0
- package/dist/create.cjs +974 -159
- package/dist/create.cjs.map +1 -1
- package/dist/create.js +2 -2
- package/dist/index.cjs +2103 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +617 -1
- package/dist/index.d.ts +617 -1
- package/dist/index.js +91 -5
- package/package.json +8 -2
- package/dist/chunk-N36PFOSA.js +0 -103
- package/dist/chunk-N36PFOSA.js.map +0 -1
- package/dist/chunk-SYOFLJLB.js +0 -437
- package/dist/chunk-SYOFLJLB.js.map +0 -1
- package/dist/chunk-VGOOQ56H.js +0 -103
- package/dist/chunk-VGOOQ56H.js.map +0 -1
package/README.md
CHANGED
|
@@ -51,6 +51,55 @@ kora migrate
|
|
|
51
51
|
# Detects changes, generates migration file, prompts to apply
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
+
### kora deploy
|
|
55
|
+
|
|
56
|
+
Deploy your Kora app to a cloud platform with a single command:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
kora deploy
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Supported platforms: **Fly.io**, **Railway** (Render, Docker, Kora Cloud coming soon).
|
|
63
|
+
|
|
64
|
+
#### Options
|
|
65
|
+
|
|
66
|
+
| Flag | Description |
|
|
67
|
+
|------|-------------|
|
|
68
|
+
| `--platform` | Target platform: `fly`, `railway`, `render`, `docker`, `kora-cloud` |
|
|
69
|
+
| `--app` | Application name on the platform |
|
|
70
|
+
| `--region` | Deployment region (e.g., `iad`, `lhr`, `syd`) |
|
|
71
|
+
| `--prod` | Deploy to production environment (default: preview) |
|
|
72
|
+
| `--confirm` | Non-interactive mode — fail fast if required data is missing |
|
|
73
|
+
| `--reset` | Delete `.kora/deploy/` state and generated artifacts |
|
|
74
|
+
|
|
75
|
+
#### Subcommands
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
kora deploy status # Show deployment health, URLs, and metadata
|
|
79
|
+
kora deploy logs # View recent deployment logs
|
|
80
|
+
kora deploy rollback # Revert to the previous deployment
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
#### Non-interactive (CI/CD)
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
kora deploy --platform=fly --app=my-app --region=iad --confirm
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
#### What it does
|
|
90
|
+
|
|
91
|
+
1. Generates a `Dockerfile` and `.dockerignore` in `.kora/deploy/`
|
|
92
|
+
2. Bundles your server entry (`server.ts`) with esbuild into a single file
|
|
93
|
+
3. Builds your client with Vite
|
|
94
|
+
4. Generates platform config (`fly.toml` or `railway.json`)
|
|
95
|
+
5. Provisions the app on the platform (creates it if new)
|
|
96
|
+
6. Deploys and returns your live URL and sync WebSocket endpoint
|
|
97
|
+
|
|
98
|
+
#### Prerequisites
|
|
99
|
+
|
|
100
|
+
- **Fly.io**: Install [flyctl](https://fly.io/docs/hands-on/install-flyctl/) and run `fly auth login`
|
|
101
|
+
- **Railway**: Install [@railway/cli](https://docs.railway.com/guides/cli) and run `railway login`
|
|
102
|
+
|
|
54
103
|
### kora generate types
|
|
55
104
|
|
|
56
105
|
Generate TypeScript types from your schema:
|