This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv, lib, appimageTools, fetchurl}: | |
let | |
pname = "houdoku"; | |
version = "2.16.0"; | |
src = fetchurl { | |
url = "https://github.com/xgi/houdoku/releases/download/v${version}/Houdoku-${version}.AppImage"; | |
hash = "sha256-P9f8t5K6c9hF/qe0Fqv5pAgB3rjya9FswV6sPF1ykOg="; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import requests | |
import os | |
# Path to the JSON file containing the template data | |
TEMPLATES_FILE = "templates.json" | |
# Source and destination Mailgun API keys and domains | |
# The Script uses Basic Auth Read More -> https://documentation.mailgun.com/docs/mailgun/api-reference/authentication/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
networks: | |
monitoring: | |
external: true | |
services: | |
alertmanager: | |
image: prom/alertmanager:v0.27.0 | |
container_name: alertmanager | |
restart: unless-stopped | |
ports: | |
- "9093:9093" |