Skip to content

Commit

Permalink
make sure there is a settings file available for sphinx
Browse files Browse the repository at this point in the history
  • Loading branch information
talavis committed May 16, 2019
1 parent 2446814 commit 6ecfddd
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"cookieSecret" : "Something random for tornado to sign cookies with",

"googleKey" : "a key from google",
"googleSecret" : "a secret from google",
"redirectUri" : "https://google oauth redirect uri",

"mysqlHost" : "127.0.0.1",
"mysqlPasswd" : "password",
"mysqlSchema" : "swefreq",
"mysqlUser" : "swefreq",
"mysqlPort" : 3306,

"postgresHost" : "postgres host",
"postgresPort" : 5432,
"postgresUser" : "postgres",
"postgresPass" : "",
"postgresName" : "swefreq",

"mongoHost" : "mongodb host",
"mongoPassword" : "password",
"mongoPort" : 27017,
"mongoUser" : "exac",
"mongoDatabases": {
"Dataset": {
"db": "db-name",
"shared": "shared-db-name"
}
},

"replyToAddress" : "no-reply@example.com",
"fromAddress" : "no-reply@example.com",
"mailServer" : "smtp.example.com",

"elixir": {
"redirectUri": "Elixir AAI Redirect URI",
"id": "Elixir AAI client id",
"secret": "Elixir AAI client secret"
}
}

0 comments on commit 6ecfddd

Please sign in to comment.