forked from 24HeuresINSA/PHPM
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
53 lines (53 loc) · 1.32 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
{
"name": "Planning Maker",
"description": "Planning Maker.",
"keywords": [
],
"website": "https://www.bde-insa-lyon.fr",
"repository": "https://github.com/BdEINSALyon/PHPM",
"logo": "https://www.iconfinder.com/icons/384887/download/png/512",
"success_url": "/",
"env": {
"SECRET": {
"description": "Secret pour générer des messages secrets :-D.",
"generator": "secret"
},
"MAIL_HOST" : {
"description": "Serveur d'envoie d'email.",
"value": "smtp.gmail.com"
},
"MAIL_USER" : {
"description": "Utilisateur du SMTP."
},
"MAIL_PASSWORD" : {
"description": "Mot de passe du SMTP."
},
"MAIL_TRANSPORT" : {
"description": "Mailer protocol.",
"value": "smtp"
},
"LOCALE": {
"description": "Langue pour les dates.",
"value": "fr"
},
"ADMIN_EMAIL": {
"description": "Admin email address."
},
"OAUTH_GOOGLE_ID": {
"description": "Google OAuth ID."
},
"OAUTH_GOOGLE_SECRET": {
"description": "Google OAuth Secret."
},
"ANDROID_API_KEY": {
"description": "Android API Key."
}
},
"image": "heroku/php",
"addons": [
"heroku-postgresql"
],
"scripts": {
"compile": "php app/console doctrine:schema:create -e prod; php app/console doctrine:fixtures:load -e prod"
}
}