mirror of
https://github.com/Threnklyn/jira.git
synced 2026-06-05 20:48:28 +02:00
10 lines
224 B
YAML
Executable File
10 lines
224 B
YAML
Executable File
#!/bin/sh
|
|
echo password-source: pass
|
|
if [ -z "$JIRACLOUD" ]; then
|
|
echo endpoint: http://localhost:8080
|
|
echo user: gojira
|
|
else
|
|
echo endpoint: https://go-jira.atlassian.net
|
|
echo user: gojira@example.com
|
|
fi
|