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 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.3")
158
- .option("--api-url <url>", "Project manager API base URL", process.env.PM_API_URL ?? "http://localhost:4000")
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
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "boringpm",
3
3
  "private": false,
4
- "version": "0.1.3",
4
+ "version": "0.1.4",
5
5
  "description": "Project manager CLI for scripts, automation, and agent workflows",
6
6
  "type": "module",
7
7
  "bin": {