-
Notifications
You must be signed in to change notification settings - Fork 1
/
Boxfile
51 lines (48 loc) · 1.43 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
web1:
################################################
## GENERAL SETTINGS
################################################
shared_writable_dirs:
- app/cache
- app/logs
- web/uploads
################################################
## WEB SPECIFIC SETTINGS
################################################
document_root: web
default_gateway: app.php
index_list: [app.php]
################################################
## PHP SPECIFIC SETTINGS
################################################
php_version: 5.4.14
php_extensions:
- intl
- mbstring
- xsl
- mysql
- posix
- iconv
- tokenizer
- xml
- pdo_mysql
- zip
- curl
- gd
php_session_autostart: Off
php_short_open_tag: Off
magic_quotes_gpc: Off
php_date_timezone: "America/Cuiaba"
################################################
## DEPLOYMENT HOOKS
################################################
# this config works with app/cache in shared writables
after_build:
- "cp app/config/parameters.yml.pagoda app/config/parameters.yml"
- "curl -s http://getcomposer.org/installer | php"
- "php composer.phar update --prefer-source --no-dev"
- "php app/console --env=prod --no-debug assetic:dump -n"
before_deploy:
- "app/console cache:clear --env=prod"
- "app/console doctrine:ensure-production-settings"
- "app/console doctrine:schema:update --env=prod --force"