forked from markoboger/de.htwg.wt.SudokuInScala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
56 lines (56 loc) · 1.62 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "play-silhouette-seed",
"description": "Seed project to show how Silhouette can be implemented into a Play Framework application.",
"keywords": [
"Play",
"Silhouette"
],
"website": "https://github.com/mohiva/play-silhouette-seed",
"repository": "https://github.com/mohiva/play-silhouette-seed",
"success_url": "/",
"env": {
"BUILDPACK_URL": "https://github.com/heroku/heroku-buildpack-scala.git",
"PLAY_CONF_FILE": "application.prod.conf",
"PLAY_APP_SECRET": "changeme",
"FACEBOOK_CLIENT_ID": {
"description": "The Facebook OAuth2 client ID",
"required": false
},
"FACEBOOK_CLIENT_SECRET": {
"description": "The Facebook OAuth2 client secret",
"required": false
},
"GOOGLE_CLIENT_ID": {
"description": "The Google OAuth2 client ID",
"required": false
},
"GOOGLE_CLIENT_SECRET": {
"description": "The Google OAuth2 client secret",
"required": false
},
"VK_CLIENT_ID": {
"description": "The VK OAuth2 client ID",
"required": false
},
"VK_CLIENT_SECRET": {
"description": "The VK OAuth2 client secret",
"required": false
},
"TWITTER_CONSUMER_KEY": {
"description": "The Twitter OAuth1 consumer key",
"required": false
},
"TWITTER_CONSUMER_SECRET": {
"description": "The Twitter OAuth1 consumer secret",
"required": false
},
"XING_CONSUMER_KEY": {
"description": "The Xing OAuth1 consumer key",
"required": false
},
"XING_CONSUMER_SECRET": {
"description": "The Xing OAuth1 consumer secret",
"required": false
}
}
}