@b0tts/template-dev-installer 1.3.1 → 1.3.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.
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
|
|
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