Compare commits

..

No commits in common. "f2f2c5aa9f9bc155e1b983ceea5c69641fd4c9db" and "8dfff8f0990cd18773aac0e3c965e06f4ad118d1" have entirely different histories.

5 changed files with 8 additions and 14 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Quick script to run local builds
source .env
hugo --environment local -D
hugo --minify --environment local -D
npx torchlight
python3 -m http.server --directory public 1313

View file

@ -60,6 +60,3 @@ enableInlineShortcodes = true
tag = "tags"
series = "series"
[minify]
disableXML = true
minifyOutput = true

View file

@ -1,7 +1,7 @@
---
title: "Automating Security Camera Notifications With Home Assistant and Ntfy"
date: 2023-11-25
lastmod: 2024-01-15
lastmod: 2023-11-27
description: "Using the power of Home Assistant automations and Ntfy push notifications to level-up security camera motion detections."
featured: true
alias: automating-security-camera-notifications-with-home-assistant-and-ntfy
@ -25,7 +25,7 @@ I figured I could combine the excellent [Reolink integration for Home Assistant]
### Alert on motion detection
{{% notice note "Ntfy Integration" %}}
Since manually configuring ntfy in Home Assistant via the [RESTful Notifications integration](/easy-push-notifications-with-ntfy#notify-configuration), I found that a [ntfy-specific integration](https://github.com/ivanmihov/homeassistant-ntfy.sh) was available through the [Home Assistant Community Store](https://hacs.xyz/) addon. That setup is a bit more flexible so I've switched my setup to use it instead:
Since manually configuring ntfy in Home Assistant via the [RESTful Notifications integration](easy-push-notifications-with-ntfy/#notify-configuration), I found that a [ntfy-specific integration](https://github.com/ivanmihov/homeassistant-ntfy.sh) was available through the [Home Assistant Community Store](https://hacs.xyz/) addon. That setup is a bit more flexible so I've switched my setup to use it instead:
```yaml
# configuration.yaml
notify:

View file

@ -10,10 +10,9 @@
{{- if ge $limit 1 -}}
{{- $pages = $pages | first $limit -}}
{{- end -}}
<!-- {{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }} -->
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
<rss version="2.0"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
@ -41,9 +40,7 @@
{{ range (.GetTerms "tags") }}
<category>{{ .LinkTitle }}</category>{{ end }}
<guid>{{ .Permalink }}</guid>
{{- $content := replaceRE "a href=\"(#.*?)\"" (printf "%s%s%s" "a href=\"" .Permalink "$1\"") .Content -}}
{{- $content = replaceRE "img src=\"(.*?)\"" (printf "%s%s%s" "img src=\"" .Permalink "$1\"") $content -}}
<description>{{ $content | html }}</description>
<description>{{ .Summary | plainify }}</description>
</item>
{{ end }}
</channel>

View file

@ -6,14 +6,14 @@
[context.production]
command = """
hugo
hugo --minify
npm i @torchlight-api/torchlight-cli
npx torchlight
"""
[context.preview]
command = """
hugo --environment preview
hugo --minify --environment preview
npm i @torchlight-api/torchlight-cli
npx torchlight
"""
@ -24,7 +24,7 @@
[context.drafts]
command = """
hugo --environment drafts -D
hugo --minify --environment drafts -D
npm i @torchlight-api/torchlight-cli
npx torchlight
"""