quicklify 0.3.1 → 0.3.3

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 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: ~7 minutes
32
+ # Hetzner: ~4 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 ~7 min
44
+ - ⚡ **Fast Setup** - Hetzner ~4 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 ~7 min):
98
+ After deployment (Hetzner ~4 min, DigitalOcean ~6 min):
99
99
 
100
100
  ```
101
101
  ✅ Deployment Successful!
@@ -148,8 +148,8 @@ For production use, we recommend setting up a domain instead of using the IP add
148
148
  | Vercel (Hobby) | $20+ | 5 min | Easy |
149
149
  | Vercel (Pro) | $50+ | 5 min | Easy |
150
150
  | Netlify (Pro) | $19+ | 5 min | Easy |
151
- | **Quicklify + Hetzner** | **€3.49** | **~5 min** | **Easy** |
152
- | **Quicklify + DigitalOcean** | **$12** | **~7 min** | **Easy** |
151
+ | **Quicklify + Hetzner** | **€3.49** | **~4 min** | **Easy** |
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!** 💰
@@ -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 ? "5-7" : "3-5";
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)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quicklify",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "Automate Coolify deployment on cloud providers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",