-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed the regex to be a string that we convert to regexp. Removed d…
…efault values from Dockerfile
- Loading branch information
1 parent
4885e6f
commit 885a15f
Showing
7 changed files
with
24 additions
and
18 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,19 +3,19 @@ FROM node:latest | |
MAINTAINER Shaun Burdick <[email protected]> | ||
|
||
ENV NODE_ENV=production \ | ||
JIRA_PROTOCOL=https \ | ||
JIRA_HOST=jira.yourdomain.com \ | ||
JIRA_PORT=443 \ | ||
JIRA_PROTOCOL= \ | ||
JIRA_HOST= \ | ||
JIRA_PORT= \ | ||
JIRA_BASE= \ | ||
JIRA_USER=username \ | ||
JIRA_PASS=password \ | ||
JIRA_API_VERSION=latest \ | ||
JIRA_VERBOSE=false \ | ||
JIRA_STRICT_SSL=false \ | ||
JIRA_REGEX=([A-Z]{1}[A-Z0-9]+\-[0-9]+) \ | ||
JIRA_USER= \ | ||
JIRA_PASS= \ | ||
JIRA_API_VERSION= \ | ||
JIRA_VERBOSE= \ | ||
JIRA_STRICT_SSL= \ | ||
JIRA_REGEX= \ | ||
JIRA_SPRINT_FIELD= \ | ||
SLACK_TOKEN=xoxb-foo \ | ||
SLACK_AUTO_RECONNECT=true | ||
SLACK_TOKEN= \ | ||
SLACK_AUTO_RECONNECT= | ||
|
||
ADD . /usr/src/myapp | ||
|
||
|
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "slack-jirabot", | ||
"version": "2.0.1", | ||
"version": "2.0.3", | ||
"description": "Slackbot for interacting with JIRA", | ||
"main": "app.js", | ||
"private": true, | ||
|
@@ -10,7 +10,7 @@ | |
"unit": "faucet", | ||
"lint": "eslint .", | ||
"coverage": "istanbul cover --include-all-sources tape test/*.test.js", | ||
"coveralls": "cat ./coverage/lcov.info | coveralls --verbose", | ||
"coveralls": "cat ./coverage/lcov.info | coveralls", | ||
"travis": "npm run coverage && npm run coveralls" | ||
}, | ||
"author": "Shaun Burdick <[email protected]>", | ||
|
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