This file contains 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
blueprint: | |
name: Frigate - Telegram Notification | |
description: Create automations to receive Snapshots and Clips from Frigate | |
domain: automation | |
input: | |
camera: | |
name: Frigate Camera | |
description: | |
The name of the camera as defined in your frigate configuration (/conf.yml). | |
target_chat: |
This file contains 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
FROM kaihofstetter/wordpress-cli:latest | |
COPY run.sh /run.sh | |
RUN chmod +x /run.sh | |
ENV WP_TITLE WordPress Demo | |
ENV WP_ADMIN_USER admin | |
ENV WP_ADMIN_PASSWORD admin | |
EXPOSE 80 |
This file contains 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
<?php | |
/** | |
* @link https://www.smartling.com | |
* @since 1.0.0 | |
* @package smartling-logger-extender | |
* Plugin Name: Smartling Logger Extender | |
* Plugin URI: http://nourl.com | |
* Description: Demo plugin which demonstrates how to add external logger to Smartling Wordpress Connector | |
* Version: 1.0 | |
* Author: Smartling |
This file contains 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
#!/bin/bash | |
# Modified version of https://gist.github.com/choldrim/b0862264bda0f6a2e4ae and | |
# https://gist.github.com/abayer/527063a4519f205efc74 | |
# Copies certain kinds of known files and directories from a given Jenkins master directory | |
# into a git repo, removing any old ones, adds 'em, commits 'em, pushes 'em. | |
set -ex | |
if [ $# -ne 3 ]; then |