-
-
Save sanderson/5919039 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
web1: | |
document_root: public | |
php_version: 5.3.10 | |
php_extensions: | |
- mbstring | |
- mcrypt | |
- pdo_mysql | |
- mysql | |
- apc | |
- memcached | |
- eaccelerator | |
- curl | |
php_post_max_size: "20M" | |
php_upload_max_filesize: "20M" | |
shared_writable_dirs: | |
- app/storage/cache | |
- app/storage/logs | |
- app/storage/meta | |
- app/storage/sessions | |
- app/storage/views | |
after_build: | |
- "if [ ! -f composer.phar ]; then curl -s http://getcomposer.org/installer | php; fi; php composer.phar install --prefer-source" | |
- "[[ $ENV != 'prod' ]] && mv pagoda/robots-dev.txt robots.txt || mv pagoda/robots-prod.txt robots.txt" | |
before_deploy: | |
- "php artisan migrate" | |
after_deploy: | |
- "rm -f app/storage/cache/*" | |
- "rm -f app/storage/views/*" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment