forked from Marsup/vagrant-openruko
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsolo.json
executable file
·83 lines (74 loc) · 2 KB
/
solo.json
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
{
"run_list": [
"recipe[apt]",
"recipe[build-essential]",
"recipe[openssl]",
"recipe[postgresql::client]",
"recipe[postgresql::server]",
"recipe[git]",
"recipe[python]",
"recipe[nodejs::install_from_package]",
"recipe[openruko::default]",
"recipe[openruko::apiserver]",
"recipe[openruko::logplex]",
"recipe[openruko::httprouting]",
"recipe[openruko::gitmouth]",
"recipe[openruko::client]",
"recipe[openruko::integration-tests]",
"recipe[openruko::dynohost]",
"recipe[fakes3]",
"recipe[heroku-toolbelt]"
],
"versions" : {
"apiserver": "v0.2.1",
"client": "v0.1.1",
"codonhooks": "v0.1.1",
"dynohost": "v0.2.1",
"httprouting": "v0.2.1",
"integration-tests": "v0.1.4",
"logplex": "v0.1.0",
"gitmouth": "v0.1.2",
"rukorun": "v0.1.2"
},
"user": "rukosan",
"group": "rukosan",
"home": "/home/rukosan",
"openruko": {
"host": "mymachine.me",
"home": "/home/rukosan/openruko",
"passsword": "rukosan",
"apiserver_key": "ec1a8eb9-18a6-42c2-81ec-c0f0f615280c",
"apiserver_host": "openruko.local",
"apiserver_ip": "127.0.0.1",
"dev_domain": "openruko.local",
"live_domain": "openruko.com"
},
"s3": {
"s3_key": "123",
"s3_secret": "123",
"s3_bucket": "openruko",
"s3_hostname": "openruko.local",
"s3_port": "4567"
},
"fakes3": {
"user": "rukosan",
"group": "rukosan"
},
"postgresql": {
"version": "9.1",
"listen_addresses": "*",
"pg_hba": [
{ "type": "host", "db": "all", "user": "all", "addr": "0.0.0.0/0", "method": "md5" },
{ "type": "host", "db": "all", "user": "all", "addr": "::1/0", "method": "md5" }
],
"password": {
"postgres": "password",
"rukosan": "rukosan"
}
},
"nodejs": {
"version": "0.8.6",
"npm": "1.1.48",
"legacy_packages": true
}
}