-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
39 additions
and
42 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
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
lmvtfy { | ||
// Port to run on, if not specified via the command line | ||
default-port = 8080 | ||
// Log the HTML being validated, for debugging purposes? | ||
debug-html = false | ||
// Suppress Spray's logging of malformed HTTP requests/headers? | ||
// (Enable this to avoid floods in your log output when your LMVTFY instance gets weird requests from crackers.) | ||
squelch-invalid-http-logging = true | ||
// List of full names of GitHub repos to watch for new issues and new issue comments | ||
github-repos-to-watch = ["twbs/bootstrap"] | ||
// Username of the account that reply comments will be posted from | ||
username = "twbs-lmvtfy" | ||
// Password for the account that reply comments will be posted from | ||
password = "not-actually-the-password" | ||
// This goes in the "Secret" field when setting up the Webhook | ||
// in the "Webhooks & Services" part of your repo's Settings. | ||
// This string will be converted to UTF-8 for the HMAC-SHA1 computation. | ||
// The HMAC is used to verify that LMVTFY is really being contacted by GitHub, | ||
// and not by some random hacker. | ||
web-hook-secret-key = "some-random-gibberish-here" | ||
// Bootlint integration settings | ||
bootlint { | ||
// Enable Bootlint integration? | ||
enabled = true | ||
// Local port that Bootlint is running on | ||
port = 7070 | ||
} | ||
} |
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