mirror of
https://github.com/samsonjs/retrogit.git
synced 2026-03-25 09:25:49 +00:00
25 lines
849 B
Markdown
25 lines
849 B
Markdown
# RetroGit
|
|
|
|
Service that shows you your GitHub commits from previous years. 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://www.retrogit.com/](https://www.retrogit.com/).
|
|
|
|
## Running Locally
|
|
|
|
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.
|
|
|
|
Finally, run:
|
|
|
|
```
|
|
dev_appserver.py --enable_sendmail=yes app
|
|
```
|
|
|
|
The server can the be accessed at [http://localhost:8080/](http://localhost:8080/).
|
|
|
|
## Deploying to App Engine
|
|
|
|
```
|
|
./deploy.sh
|
|
```
|