@b0tts/template-dev-installer 1.3.1 → 1.4.0

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/files/README.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Setup
2
2
 
3
+ ### Bootstrap
4
+
5
+ **1. Scaffold the project with the template installer:**
6
+
7
+ ```bash
8
+ npx @b0tts/template-dev-installer@latest
9
+ ```
10
+
3
11
  ### Docker
4
12
 
5
13
  **1. Create and start the Docker workspace:**
@@ -11,7 +19,7 @@ docker run -it \
11
19
  -w /workspace \
12
20
  -p 58741:58741 \
13
21
  -p 2222:22 \
14
- ghcr.io/anomalyco/opencode
22
+ alpine:latest
15
23
  ```
16
24
 
17
25
  (Flatten that to a single line using an AI chat or Docker Gordon, then run it.)
@@ -1,16 +1,4 @@
1
- // ── Notifications Plugin for OpenCode ───────────────────────────────
2
- // Sends push notifications via ntfy.sh when the AI finishes, needs
3
- // permission, or encounters errors.
4
- //
5
- // SETUP:
6
- // 1. Get a topic at https://ntfy.sh (or self-host)
7
- // 2. Update NTFY_CONFIG below with your URL, topic, and auth
8
- // 3. Subscribe to the topic in the ntfy app (Android / iOS)
9
- //
10
- // Replace "project_name" in the event titles with your project name.
11
- // ────────────────────────────────────────────────────────────────────
12
-
13
- const USE_SELF_HOSTED = false // set to true if you self-host ntfy
1
+ const USE_SELF_HOSTED = true
14
2
 
15
3
  const NTFY_CONFIG = {
16
4
  self: {
@@ -63,4 +51,4 @@ export const NotifyPlugin = async () => {
63
51
  }
64
52
  },
65
53
  }
66
- }
54
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@b0tts/template-dev-installer",
3
- "version": "1.3.1",
3
+ "version": "1.4.0",
4
4
  "type": "module",
5
5
  "description": "Interactive installer for the DevelopmentTemplate — pick Skills, OpenCode, Pi, or install everything at once.",
6
6
  "bin": {