diff --git a/README.md b/README.md index 614f11b..255cabc 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -# GitHop +# RetroGit Service that shows you your GitHub commits from a year ago. Includes a mail digest to that you can see each day what you were up to in the past. -It's currently running at [https://git-hop.appspot.com/](https://git-hop.appspot.com/). +It's currently running at [https://retro-git.appspot.com/](https://retro-git.appspot.com/). ## Running Locally -First, [install the Go App Engine SDK](https://developers.google.com/appengine/downloads#Google_App_Engine_SDK_for_Go). +First, [install the Go App Engine SDK](https://developers.google.com/appengine/downloads#Google_App_Engine_SDK_for_Go). Then, create `github-oauth.json` (you'll need to [register a new app](https://github.com/settings/applications/new) with GitHub) and `session.json` (with randomly-generated keys) files in the `config` directory, based on the sample files that are already there. diff --git a/app/app.yaml b/app/app.yaml index 0824bd5..7849eb2 100644 --- a/app/app.yaml +++ b/app/app.yaml @@ -1,4 +1,4 @@ -application: git-hop +application: retro-git version: 1 runtime: go api_version: go1 diff --git a/app/githop.go b/app/githop.go index 7bea95a..273863b 100644 --- a/app/githop.go +++ b/app/githop.go @@ -373,9 +373,9 @@ func sendDigestForAccount(account *Account, c appengine.Context) (bool, error) { } digestMessage := &mail.Message{ - Sender: "GitHop ", + Sender: "RetroGit ", To: []string{emailAddress}, - Subject: "GitHop Digest", + Subject: "RetroGit Digest", HTMLBody: digestHtml.String(), } err = mail.Send(c, digestMessage) diff --git a/app/templates/digest-admin.html b/app/templates/digest-admin.html index aac95b5..24f2ec5 100644 --- a/app/templates/digest-admin.html +++ b/app/templates/digest-admin.html @@ -1,4 +1,4 @@ -{{define "title"}}GitHop Admin{{end}} +{{define "title"}}RetroGit Admin{{end}} {{define "body"}} diff --git a/app/templates/digest-page.html b/app/templates/digest-page.html index b85a03f..1e35c74 100644 --- a/app/templates/digest-page.html +++ b/app/templates/digest-page.html @@ -1,4 +1,4 @@ -{{define "title"}}GitHop - Digest for {{.Digest.User.Login}}{{end}} +{{define "title"}}RetroGit - Digest for {{.Digest.User.Login}}{{end}} {{define "body"}} diff --git a/app/templates/index-signed-out.html b/app/templates/index-signed-out.html index ddea907..78cc0a8 100644 --- a/app/templates/index-signed-out.html +++ b/app/templates/index-signed-out.html @@ -1,4 +1,4 @@ -{{define "title"}}GitHop{{end}} +{{define "title"}}RetroGit{{end}} {{define "body"}} diff --git a/app/templates/index.html b/app/templates/index.html index 86b5e8e..1b972ae 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -1,4 +1,4 @@ -{{define "title"}}GitHop{{end}} +{{define "title"}}RetroGit{{end}} {{define "body"}} diff --git a/app/templates/settings.html b/app/templates/settings.html index 8568f05..7532f47 100644 --- a/app/templates/settings.html +++ b/app/templates/settings.html @@ -1,4 +1,4 @@ -{{define "title"}}GitHop - Settings{{end}} +{{define "title"}}RetroGit - Settings{{end}} {{define "repo"}}