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
#!/bin/bash | |
# Configure shell | |
set -euo pipefail | |
# Configuration | |
readonly SITE_URL='http://localhost:8065' | |
readonly API_URI='/api/v4' | |
readonly PLUGIN_URI='/plugins/com.github.salatfreak.mattermost-plugin-nextcloud' | |
readonly TOKEN='<admin personal access token>' |