pinme 2.0.1-beta.1 → 2.0.1-beta.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 +11 -11
- package/dist/index.js +427 -374
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -231,8 +231,8 @@ pinme upload /path/to/file-or-directory
|
|
|
231
231
|
|
|
232
232
|
```bash
|
|
233
233
|
# Upload and bind to a domain (auto-detected: Pinme subdomain or DNS domain)
|
|
234
|
-
pinme
|
|
235
|
-
pinme
|
|
234
|
+
pinme upload <path> --domain <name>
|
|
235
|
+
pinme upload <path> -d <name>
|
|
236
236
|
```
|
|
237
237
|
|
|
238
238
|
**Smart Auto-Detection:**
|
|
@@ -242,13 +242,13 @@ pinme bind <path> -d <name>
|
|
|
242
242
|
**Examples:**
|
|
243
243
|
```bash
|
|
244
244
|
# Bind to a Pinme subdomain (auto-detected)
|
|
245
|
-
pinme
|
|
245
|
+
pinme upload ./dist --domain my-site
|
|
246
246
|
|
|
247
247
|
# Bind to a DNS domain (auto-detected by the dot)
|
|
248
|
-
pinme
|
|
248
|
+
pinme upload ./dist --domain example.com
|
|
249
249
|
|
|
250
250
|
# Force DNS mode if needed
|
|
251
|
-
pinme
|
|
251
|
+
pinme upload ./dist --domain my-site --dns
|
|
252
252
|
```
|
|
253
253
|
|
|
254
254
|
### Import CAR files
|
|
@@ -371,7 +371,7 @@ The selected directory must meet:
|
|
|
371
371
|
Upload files and bind them to a custom domain. **Domain binding requires VIP membership.**
|
|
372
372
|
|
|
373
373
|
```bash
|
|
374
|
-
pinme
|
|
374
|
+
pinme upload <path> [options]
|
|
375
375
|
```
|
|
376
376
|
|
|
377
377
|
**Options:**
|
|
@@ -385,13 +385,13 @@ pinme bind <path> [options]
|
|
|
385
385
|
pinme bind
|
|
386
386
|
|
|
387
387
|
# Bind to a Pinme subdomain (auto-detected: no dot in domain)
|
|
388
|
-
pinme
|
|
388
|
+
pinme upload ./dist --domain my-site
|
|
389
389
|
|
|
390
390
|
# Bind to a DNS domain (auto-detected: contains dot)
|
|
391
|
-
pinme
|
|
391
|
+
pinme upload ./dist --domain example.com
|
|
392
392
|
|
|
393
393
|
# Force DNS mode with --dns flag
|
|
394
|
-
pinme
|
|
394
|
+
pinme upload ./dist --domain my-site --dns
|
|
395
395
|
```
|
|
396
396
|
|
|
397
397
|
**Auto-Detection:**
|
|
@@ -584,10 +584,10 @@ Domain binding (both Pinme subdomains and custom DNS domains) requires VIP membe
|
|
|
584
584
|
3. **Bind your domain**
|
|
585
585
|
```bash
|
|
586
586
|
# Bind to a Pinme subdomain
|
|
587
|
-
pinme
|
|
587
|
+
pinme upload ./dist --domain my-site
|
|
588
588
|
|
|
589
589
|
# Bind to a custom DNS domain
|
|
590
|
-
pinme
|
|
590
|
+
pinme upload ./dist --domain example.com --dns
|
|
591
591
|
```
|
|
592
592
|
|
|
593
593
|
### Checking VIP Status
|