storeconfig 0.0.9 → 0.0.11
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 +5 -8
- package/dist/cli.js +78 -78
- package/dist/cli.js.map +4 -4
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -59,11 +59,8 @@ Set up your App Store Connect API credentials:
|
|
|
59
59
|
storeconfig configure
|
|
60
60
|
|
|
61
61
|
# Add Apple credentials
|
|
62
|
-
#
|
|
63
|
-
storeconfig apple
|
|
64
|
-
--issuer-id YOUR_ISSUER_ID \
|
|
65
|
-
--key-id YOUR_KEY_ID \
|
|
66
|
-
--key-path /path/to/your/AuthKey_XXXXX.p8
|
|
62
|
+
# The command will prompt you for Issuer ID and Key ID
|
|
63
|
+
storeconfig apple --key-path /path/to/your/AuthKey_XXXXX.p8
|
|
67
64
|
```
|
|
68
65
|
|
|
69
66
|
#### Get App Store Connect Key and IDs
|
|
@@ -85,9 +82,9 @@ This is required for store config to manage your apps on App Store Connect.
|
|
|
85
82
|
- Select **App Manager Access** - this is required to manage prices and other app configurations
|
|
86
83
|
|
|
87
84
|
4. **Download and Copy Credentials**
|
|
88
|
-
- Download the `.p8` file.
|
|
89
|
-
- **Key ID**
|
|
90
|
-
- **Issuer ID**
|
|
85
|
+
- Download the `.p8` file. Use its path as the `--key-path` argument.
|
|
86
|
+
- **Key ID** - you'll be prompted to enter this.
|
|
87
|
+
- **Issuer ID** - you'll be prompted to enter this.
|
|
91
88
|
|
|
92
89
|
## 📋 Commands
|
|
93
90
|
|