-
Notifications
You must be signed in to change notification settings - Fork 0
/
Boxfile
40 lines (38 loc) · 859 Bytes
/
Boxfile
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
global:
env:
- LARAVEL_ENV: pagoda
db1:
name: kathlyn
type: mysql
web1:
name: domonique
shared_writable_dirs:
- /app/storage/cache
- /app/storage/logs
- /app/storage/meta
- /app/storage/sessions
- /app/storage/views
document_root: /public
php_version: 5.4.14
php_extensions:
- pdo_mysql
- mcrypt
- mbstring
- curl
- gd
- zip
zend_extensions:
- xcache
php_output_buffering: "4096"
php_max_execution_time: 30
php_max_input_time: 60
php_error_reporting: 0
#php_error_reporting: 30719
after_build:
- "if [ ! -f composer.phar ]; then curl -s http://getcomposer.org/installer | php; fi; php composer.phar install"
#before_deploy:
# - "php artisan migrate:install"
# - "php artisan migrate"
after_deploy:
- "rm -f storage/cache/*"
- "rm -f storage/views/*"