forked from stfalcon-studio/lost-and-found
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
33 lines (33 loc) · 988 Bytes
/
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
{
"name": "Lost and Found",
"description": "Web-service for announcements of lost and found things.",
"keywords": [
"lost",
"found",
"social",
"help",
"announcements",
"service"
],
"website": "https://github.com/stfalcon-studio/lost-and-found",
"success_url": "/",
"repository": "https://github.com/stfalcon-studio/lost-and-found",
"logo": "http://icons.iconarchive.com/icons/icons-land/vista-map-markers/256/Map-Marker-Marker-Outside-Azure-icon.png",
"addons": [
"heroku-postgresql"
],
"env": {
"SYMFONY_ENV": {
"value": "prod"
},
"FACEBOOK_OAUTH_CLIENT_ID": {
"value": "FacebookClientId"
},
"FACEBOOK_OAUTH_CLIENT_SECRET": {
"value": "FacebookClientSecret"
}
},
"scripts": {
"postdeploy": "php app/console doctrine:schema:create; php app/console doctrine:schema:update --force"
}
}