-
Notifications
You must be signed in to change notification settings - Fork 36
/
app.json
39 lines (39 loc) · 1.08 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
{
"name": "LaraHack",
"description": "Administration system for hackathons",
"repository": "https://github.com/AbdelkhalekESI/LaraHack",
"logo": "https://raw.githubusercontent.com/ScientificClubofESI/LaraHack/master/Screenshots/LaraHackLogo.png",
"env": {
"APP_NAME": {
"description": "Hackathon name",
"value": "HackIT"
},
"APP_KEY": {
"generator": "secret"
},
"ADMIN_EMAIL": {
"description": "Default admin mail at app initialization",
"value": "[email protected]"
},
"ADMIN_PASS": {
"description": "Default admin password at app initialization",
"value": "cseisgreat"
},
"QUEUE_CONNECTION": {
"description": "Used to send mails in the background ",
"value": "database"
},
"QUEUE_DRIVER": {
"description": "Used to send mails in the background ",
"value": "database"
},
"MAIL_DRIVER": "smtp",
"MAIL_HOST": "smtp.gmail.com",
"MAIL_USERNAME": "[email protected]",
"MAIL_PASSWORD": "password",
"MAIL_PORT": "465",
"MAIL_ENCRYPTION": "ssl"
},
"addons": [ "cleardb" ],
"keywords": [ "larahack" , "laravel", "php", "mysql" ]
}