-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
86 lines (76 loc) · 2.39 KB
/
.kitchen.yml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-7.1
suites:
- name: default
run_list:
- 'recipe[cloudless-box::default]'
attributes:
cloudless-box:
gems:
sass: true
applications:
meteor-app:
layout: meteor
mongodb: true
sticky_sessions: true
repository_path: test/apps/meteor-app
repository: https://github.com/karolsluszniak/cloudless-box.git
middleman-app:
layout: middleman
ruby: 2.2.2
repository_path: test/apps/middleman-app
repository: https://github.com/karolsluszniak/cloudless-box.git
url:
- custom-middleman-app-domain-1.com
- custom-middleman-app-domain-2.com
node-app:
layout: node
bower: true
repository_path: test/apps/node-app
repository: https://github.com/karolsluszniak/cloudless-box.git
env:
sample_variable: '123'
phoenix-app:
layout: phoenix
postgresql: true
repository_path: test/apps/phoenix-app
repository: https://github.com/karolsluszniak/cloudless-box.git
rails-app:
layout: rails
ruby: 2.2.2
postgresql: true
redis: true
repository_path: test/apps/rails-app
repository: https://github.com/karolsluszniak/cloudless-box.git
workers:
invalid: false
infinite:
command: 'bundle exec rake infinite'
scale: 2
static-app:
layout: static
public: ''
repository_path: test/apps/static-app
repository: https://github.com/karolsluszniak/cloudless-box.git
shared_dirs:
- articles
symlinks:
about.html: true
article_index.html: articles/index.html
category_index.html: categories/index.html
- name: phoenix-only
run_list:
- 'recipe[cloudless-box::default]'
attributes:
cloudless-box:
applications:
phoenix-app:
layout: phoenix
postgresql: true
repository_path: test/apps/phoenix-app
repository: https://github.com/karolsluszniak/cloudless-box.git