-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
52 lines (52 loc) · 1.38 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
{
"name": "ESCan",
"description": "ESCan is a tool used for participation tracking at UCI's E-Week",
"keywords": [
"uci",
"php",
"escan",
"eweek"
],
"website": "http://esc.eng.uci.edu/escan",
"repository": "https://github.com/hawaiianchimp/escan",
"logo": "http://esc.eng.uci.edu/escan/images/logo.png",
"success_url": "/install.php",
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-php"
}
],
"addons": [
"cleardb"
],
"env": {
"EWEEKSTART": {
"description": "The week that Eweek starts presented in the week number and year. This can be changed later.",
"value": "2015-W09"
},
"WEBMASTER_USERNAME": {
"description": "The username of the webmaster",
"value": "admin"
},
"WEBMASTER_PASSWORD": {
"description": "The password of the webmaster",
"value": "password"
},
"WEBMASTER_EMAIL": {
"description": "The email of the webmaster",
"value": "[email protected]"
},
"APP_NAME": {
"description": "The name of the application",
"value": "ESCan"
},
"ORGANIZATION":{
"description": "The name of the organization",
"value": "The Engineering Student Council"
},
"ORG_EMAIL":{
"description": "The email which will be displayed when emails are sent out",
"value": "[email protected]"
}
}
}