boringpm 0.1.3 → 0.1.4
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 +3 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,6 +16,9 @@ When installed globally, use:
|
|
|
16
16
|
|
|
17
17
|
If you're running from source in this repo, use `npm run dev -- <command>` from `cli/`.
|
|
18
18
|
|
|
19
|
+
By default, `boringpm` uses `https://boringpm.onrender.com` as the API URL.
|
|
20
|
+
You can override it with `PM_API_URL` or `--api-url`.
|
|
21
|
+
|
|
19
22
|
## Development scripts
|
|
20
23
|
|
|
21
24
|
```bash
|
package/dist/index.js
CHANGED
|
@@ -154,8 +154,8 @@ const program = new Command();
|
|
|
154
154
|
program
|
|
155
155
|
.name("boringpm")
|
|
156
156
|
.description("Project manager CLI")
|
|
157
|
-
.version("0.1.
|
|
158
|
-
.option("--api-url <url>", "Project manager API base URL", process.env.PM_API_URL ?? "
|
|
157
|
+
.version("0.1.4")
|
|
158
|
+
.option("--api-url <url>", "Project manager API base URL", process.env.PM_API_URL ?? "https://boringpm.onrender.com")
|
|
159
159
|
.option("--token <token>", "Auth token (overrides PM_AUTH_TOKEN and stored token)")
|
|
160
160
|
.option("--actor-name <name>", "Display name for notifications (overrides PM_ACTOR_NAME)");
|
|
161
161
|
program
|