-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
executable file
·83 lines (83 loc) · 2.25 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "Opus",
"description": "A wiki platform for teams.",
"keywords": [
"Wiki",
"Laravel",
"Heroku"
],
"website": "https://startupengine.herokuapp.com",
"repository": "https://github.com/luckyrabbitllc/opusheroku",
"logo": "https://raw.githubusercontent.com/luckyrabbitllc/startupengine/master/storage/docs/images/logo.png",
"success_url": "/",
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize",
],
"post-update-cmd": [
"php artisan migrate --force"
],
"postdeploy": [
"php artisan migrate --force"
]
},
"env": {
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"DB_CONNECTION": {
"description": "Use Heroku's pgsql by default.",
"value": "pgsql"
},
"APP_PLATFORM": {
"description": "Don't change this if you're deploying to Heroku.",
"value": "heroku"
},
"OPUS_MAIL_SENDER_NAME": {
"description": "E-mail Sender Name",
"value": "heroku"
},
"OPUS_MAIL_SENDER_ADDRESS": {
"description": "E-mail Sender Address",
"value": "heroku"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "Free"
}
},
"image": "heroku/php",
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs#v83"
},
{
"url": "https://github.com/heroku/heroku-buildpack-php"
}
],
"environments": {
"test": {
"scripts": {
"test": "bundle exec rake test"
}
}
}
}