mirror of
https://github.com/Threnklyn/jira.git
synced 2026-06-13 16:13:34 +02:00
15 lines
243 B
YAML
Executable File
15 lines
243 B
YAML
Executable File
#!/bin/sh
|
|
cat <<EOF
|
|
config:
|
|
stop: true
|
|
password-source: pass
|
|
EOF
|
|
|
|
if [ -z "$JIRACLOUD" ]; then
|
|
echo endpoint: http://localhost:8080
|
|
echo user: gojira
|
|
else
|
|
echo endpoint: https://go-jira.atlassian.net
|
|
echo user: gojira
|
|
fi
|