Skip to content

Commit

Permalink
Fixing heroku deployment?��
Browse files Browse the repository at this point in the history
  • Loading branch information
aerth committed Aug 8, 2016
1 parent 6f5e255 commit 2cb9789
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
PORT?=80
SENDGRID?="demo"
web: cosgo -quiet -nolog -sendgrid="$SENDGRID" -port="$PORT"
web: cosgo -quiet -nolog -sg="$SENDGRID" -port="$PORT"
1 change: 1 addition & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ var (
gpg = flag.String("gpg", "", "Path to ascii-armored GPG public key (for encrypting messages.)")
customExtension = flag.String("ext", "", "Serve extra static files. Uses regex. \n\tExample: -ext \"pdf|txt|html\"")
sendgridKey = flag.String("sg", "", "Sendgrid API key (disables mbox)")
destinationEmail= flag.String("to", "", "Your email address (-sg flag required)")
logfile = flag.String("log", "", "Use a log file instead of stdout\n\tExample: -log cosgo.log -debug")
mboxfile = flag.String("mbox", "cosgo.mbox", "Custom mbox file name\n\tExample: -mbox custom.mbox")
)
Expand Down

0 comments on commit 2cb9789

Please sign in to comment.