quicklify 0.3.1 → 0.3.2
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 +4 -4
- package/dist/commands/init.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Total: ~30 minutes + manual work
|
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
31
|
npx quicklify init
|
|
32
|
-
# Hetzner: ~5 minutes | DigitalOcean: ~
|
|
32
|
+
# Hetzner: ~5 minutes | DigitalOcean: ~6 minutes
|
|
33
33
|
# Zero manual work ✨
|
|
34
34
|
```
|
|
35
35
|
|
|
@@ -41,7 +41,7 @@ npx quicklify init
|
|
|
41
41
|
- 🌍 **Multi-Cloud** - Hetzner Cloud + DigitalOcean
|
|
42
42
|
- 💻 **Beautiful CLI** - Interactive prompts with validation
|
|
43
43
|
- 🎨 **ARM64 Ready** - Support for cost-effective ARM servers
|
|
44
|
-
- ⚡ **Fast Setup** - Hetzner ~5 min, DigitalOcean ~
|
|
44
|
+
- ⚡ **Fast Setup** - Hetzner ~5 min, DigitalOcean ~6 min
|
|
45
45
|
- ✨ **Dynamic Server Types** - Only shows compatible types for selected location
|
|
46
46
|
- 🔥 **Auto Firewall** - Ports 8000, 22, 80, 443 configured automatically
|
|
47
47
|
- 🚀 **Zero SSH Required** - Opens directly in browser after deployment
|
|
@@ -95,7 +95,7 @@ You'll be prompted for:
|
|
|
95
95
|
|
|
96
96
|
### Step 3: Access Coolify
|
|
97
97
|
|
|
98
|
-
After deployment (Hetzner ~5 min, DigitalOcean ~
|
|
98
|
+
After deployment (Hetzner ~5 min, DigitalOcean ~6 min):
|
|
99
99
|
|
|
100
100
|
```
|
|
101
101
|
✅ Deployment Successful!
|
|
@@ -149,7 +149,7 @@ For production use, we recommend setting up a domain instead of using the IP add
|
|
|
149
149
|
| Vercel (Pro) | $50+ | 5 min | Easy |
|
|
150
150
|
| Netlify (Pro) | $19+ | 5 min | Easy |
|
|
151
151
|
| **Quicklify + Hetzner** | **€3.49** | **~5 min** | **Easy** |
|
|
152
|
-
| **Quicklify + DigitalOcean** | **$12** | **~
|
|
152
|
+
| **Quicklify + DigitalOcean** | **$12** | **~6 min** | **Easy** |
|
|
153
153
|
| Manual VPS + Coolify | €3.49 | 30+ min | Hard |
|
|
154
154
|
|
|
155
155
|
**Savings: ~$180-240/year per project!** 💰
|
package/dist/commands/init.js
CHANGED
|
@@ -198,7 +198,7 @@ export async function initCommand() {
|
|
|
198
198
|
// Installing Coolify
|
|
199
199
|
const isDigitalOcean = providerChoice === "digitalocean";
|
|
200
200
|
const waitTime = isDigitalOcean ? 300000 : 180000; // DO: 5 min, Hetzner: 3 min
|
|
201
|
-
const waitLabel = isDigitalOcean ? "
|
|
201
|
+
const waitLabel = isDigitalOcean ? "4-6" : "3-5";
|
|
202
202
|
const installSpinner = createSpinner(`Installing Coolify (this takes ${waitLabel} minutes)...`);
|
|
203
203
|
installSpinner.start();
|
|
204
204
|
// Wait for Coolify installation (cloud-init runs in background)
|