Skip to content

Instantly share code, notes, and snippets.

@Netcelal
Forked from Meroje-snippets/Boxfile.yml
Created July 30, 2012 23:38
Show Gist options
  • Save Netcelal/3211936 to your computer and use it in GitHub Desktop.
Save Netcelal/3211936 to your computer and use it in GitHub Desktop.
Boxfile:Laravel
global:
env:
- LARAVEL_ENV: production
web1:
name: your-app-name
shared_writable_dirs:
- /storage/cache
- /storage/database
- /storage/logs
- /storage/sessions
- /storage/views
- /storage/work
document_root: /public
php_version: 5.3.8
php_extensions:
- pdo_mysql
- mcrypt
- apc
- memcache
before_deploy:
- "php artisan migrate:install"
- "php artisan migrate"
after_deploy:
- "rm -f storage/cache/*"
- "rm -f storage/views/*"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment