-
Notifications
You must be signed in to change notification settings - Fork 7
/
Boxfile.install
52 lines (48 loc) · 1.02 KB
/
Boxfile.install
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
52
build:
type: php
version: 5.6
stability: production
exec:
- "composer install --no-interaction --prefer-source"
lib_dir: vendor
web1:
name: xsanisty-silex-starter
type: php
version: 5.6
stability: production
network_dirs:
storage1:
- app/storage/meta
- app/storage/database
- app/storage/view
- public/assets
nonpersistent_writable_dirs:
- app/storage/cache
- app/storage/profiler
httpd_document_root: public
php_extensions:
- mbstring
- mcrypt
- pdo_mysql
- redis
- zip
- xcache
- json
php_session_save_handler: redis
php_session_save_path: "tcp://${CACHE1_HOST}:${CACHE1_PORT}"
before_deploy:
- "php xpress migration:migrate"
- "php xpress module:publish-asset"
- "php xpress user:create -e admin@admin.com -p password -f Website -l Administrator -a"
cache1:
type: redis
topology: single
version: 3.0
database1:
type: mysql
topology: single
version: 5.6
storage1:
name: filestore
type: nfs
topology: single