mirror of
https://github.com/samsonjs/retrogit.git
synced 2026-03-25 09:25:49 +00:00
Basic RetroGit renaming.
User-facing strings only.
This commit is contained in:
parent
c285bc0e02
commit
9aaa8326e0
8 changed files with 11 additions and 11 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
application: git-hop
|
||||
application: retro-git
|
||||
version: 1
|
||||
runtime: go
|
||||
api_version: go1
|
||||
|
|
|
|||
|
|
@ -373,9 +373,9 @@ func sendDigestForAccount(account *Account, c appengine.Context) (bool, error) {
|
|||
}
|
||||
|
||||
digestMessage := &mail.Message{
|
||||
Sender: "GitHop <mihai.parparita@gmail.com>",
|
||||
Sender: "RetroGit <digests@retrogit.com>",
|
||||
To: []string{emailAddress},
|
||||
Subject: "GitHop Digest",
|
||||
Subject: "RetroGit Digest",
|
||||
HTMLBody: digestHtml.String(),
|
||||
}
|
||||
err = mail.Send(c, digestMessage)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{{define "title"}}GitHop Admin{{end}}
|
||||
{{define "title"}}RetroGit Admin{{end}}
|
||||
|
||||
{{define "body"}}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{{define "title"}}GitHop - Digest for {{.Digest.User.Login}}{{end}}
|
||||
{{define "title"}}RetroGit - Digest for {{.Digest.User.Login}}{{end}}
|
||||
|
||||
{{define "body"}}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{{define "title"}}GitHop{{end}}
|
||||
{{define "title"}}RetroGit{{end}}
|
||||
|
||||
{{define "body"}}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{{define "title"}}GitHop{{end}}
|
||||
{{define "title"}}RetroGit{{end}}
|
||||
|
||||
{{define "body"}}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{{define "title"}}GitHop - Settings{{end}}
|
||||
{{define "title"}}RetroGit - Settings{{end}}
|
||||
|
||||
{{define "repo"}}
|
||||
<li class="repo {{.TypeAsClassName}}">
|
||||
|
|
|
|||
Loading…
Reference in a new issue