14 lines
1.1 KiB
Django/Jinja
14 lines
1.1 KiB
Django/Jinja
# ----------
|
|
# Configuration
|
|
# Describes the Incoming Webhook allowing you to post messages into Slack.
|
|
# After the configuration, copy this file to /etc or your home directory.
|
|
# NOTE : Please rename this file to '.slacktee', if you'd like to place this in your home directory.
|
|
# ----------
|
|
webhook_url="https://hooks.slack.com/services/{{ slack_token }}" # Incoming Webhooks integration URL. See https://my.slack.com/services/new/incoming-webhook
|
|
upload_token="" # The user's API authentication token, only used for file uploads. See https://api.slack.com/#auth
|
|
channel="technik" # Default channel to post messages. '#' is prepended, if it doesn't start with '#' or '@'.
|
|
tmp_dir="/tmp" # Temporary file is created in this directory.
|
|
username="slacktee" # Default username to post messages.
|
|
icon="ghost" # Default emoji or a direct url to an image to post messages. You don't have to wrap emoji with ':'. See http://www.emoji-cheat-sheet.com.
|
|
attachment="" # Default color of the attachments. If an empty string is specified, the attachments are not used.
|