-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBoxfile
More file actions
29 lines (29 loc) · 770 Bytes
/
Boxfile
File metadata and controls
29 lines (29 loc) · 770 Bytes
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
web1:
document_root: public
php_version: 5.4.14
php_extensions:
- mbstring
- mcrypt
- pdo_mysql
- redis
- zip
- xcache
php_session_save_handler: redis
php_session_save_path: "tcp://tunnel.pagodabox.com:6379"
shared_writable_dirs:
- app/storage/cache
- app/storage/logs
- app/storage/meta
- app/storage/sessions
- app/storage/views
- public/img-upload
after_build:
- "if [ ! -f composer.phar ]; then curl -s http://getcomposer.org/installer | php; fi; php composer.phar install --prefer-source"
after_deploy:
- "php artisan db:seed --env=production"
- "php artisan cache:clear"
- "rm -f app/storage/views/*"
before_deploy:
- "php artisan migrate --env=production"
cache1:
type: redis