Skip to content
This repository was archived by the owner on Sep 2, 2021. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ __Note:__ If you discovered any issue with the extension registry or have an ide
The key should be in `certificate.key` and the cert should be in `certificate.cert`.
4. Register a GitHub API [client app](https://github.com/settings/applications). The callback URL must match the hostname of your
server. For testing, you could enter `https://localhost:4040/auth/github/callback`.
4. Also in the `config` folder, create a `config.json` file that contains:
4. Also in the `config` folder, copy the `config.json.example` file to `config.json` and make sure it contains:
* `sessionSecret` - key to use for session hashing (required)
* `githubClientId` - client id for registered GitHub app (required)
* `githubClientSecret` - client secret for registered GitHub app (required)
Expand Down
17 changes: 17 additions & 0 deletions config.json.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"sessionSecret": "sessionsecret",
"githubClientId": "clientid",
"githubClientSecret": "clientsecret",
"hostname": localhost,
"securePort": 4040,
"redirectPort": 4000,
"rss.title": "",
"rss.description": "",
"rss.feedURL": "",
"rss.siteURL": "",
"admins": "github:username",
"aws.accesskey": "AWS accesskey",
"aws.secretkey": "AWS secretkey",
"s3.bucket": "S3 bucket",
"sns.topic": ""
}