-
Notifications
You must be signed in to change notification settings - Fork 12
/
app.json
31 lines (31 loc) · 1.06 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "Flask-Dance with Google & SQLAlchemy",
"description": "Testing Flask-Dance's OAuth integration with Google using SQLAlchemy",
"keywords": [
"oauth"
],
"website": "https://github.com/singingwolfboy/flask-dance-google-sqla",
"repository": "https://github.com/singingwolfboy/flask-dance-google-sqla",
"env": {
"FLASK_SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"OAUTHLIB_RELAX_TOKEN_SCOPE": {
"description": "Indicates that it's OK for Google to return different OAuth scopes than requested.",
"value": "true"
},
"GOOGLE_OAUTH_CLIENT_ID": {
"description": "The OAuth client ID for your application, assigned by Google",
"value": "app-id-goes-here"
},
"GOOGLE_OAUTH_CLIENT_SECRET": {
"description": "The OAuth client secret for your application, assigned by Google",
"value": "app-secret-goes-here"
}
},
"addons": [{ "plan": "heroku-postgresql" }],
"scripts": {
"postdeploy": "flask createdb"
}
}