-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample
More file actions
180 lines (180 loc) · 3.98 KB
/
config.sample
File metadata and controls
180 lines (180 loc) · 3.98 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"AwsKeyPath": "~/.keys",
"PubKeyPath": "~/keys",
"ScriptPath": "~/.clifford/scripts",
"Images": {
"trusty": {
"Id": "ami-b027efd8",
"Login": "ubuntu",
"Name": "ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20140724",
"Meta": {
"Zone": "us-east-1",
"Name": "trusty",
"Version": "14.04 LTS",
"Arch": "amd64",
"InstanceType": "ebs-ssd"
}
},
"trusty-m3": {
"Id": "ami-8827efe0",
"Login": "ubuntu",
"Name": "ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20140724",
"Meta": {
"Zone": "us-east-1",
"Name": "trusty",
"Version": "14.04 LTS",
"Arch": "amd64",
"InstanceType": "hvm:ebs-ssd"
}
}
},
"Bundles": {
"dev": "autoconf automake build-essential libtool ntp",
"img-libs": "libfreetype6-dev libjpeg-dev liblcms2-dev libpng12-dev libtiff5-dev libwebp-dev zlib1g-dev",
"libs": "libev-dev libevent-dev libgmp-dev libjson0-dev libsqlite3-dev libssl-dev libxslt1-dev libyaml-dev libzmq-dev python-dev uuid-dev",
"etc": "apache2-utils figlet finger gnupg2 htop python-pip sqlite3 supervisor unzip vim-nox zip",
"vcs": "bzr git-core mercurial",
"memcached": "libmemcached-dev memcached",
"postgres": "postgresql postgresql-client libpq-dev",
"postgres-client": "postgresql-client libpq-dev"
},
"PythonBundles": {
"base": "flake8 virtualenvwrapper"
},
"Groups": {
"base": [
{
"Type": "bundle",
"Value": "dev"
},
{
"Type": "bundle",
"Value": "img-libs"
},
{
"Type": "bundle",
"Value": "libs"
},
{
"Type": "bundle",
"Value": "etc"
},
{
"Type": "bundle",
"Value": "vcs"
}
],
"base-django": [
{
"Type": "group",
"Value": "base"
},
{
"Type": "bundle",
"Value": "postgres-client"
}
],
"base-rabbit": [
{
"Type": "group",
"Value": "base"
},
{
"Type": "bundle",
"Value": "postgres-client"
},
{
"Type": "packages",
"Value": "rabbitmq-server"
}
]
},
"Builds": {
"micro": {
"Size": "t1.micro",
"Image": "trusty",
"Key": "jserver",
"SecurityGroups": [
"default",
"ssh-only"
],
"Zone": "us-east-1a"
},
"small": {
"Size": "m1.small",
"Image": "trusty",
"Key": "jserver",
"SecurityGroups": [
"default",
"ssh-only"
],
"Zone": "us-east-1a"
},
"medium": {
"Size": "m3.medium",
"Image": "trusty-m3",
"Key": "jserver",
"SecurityGroups": [
"default",
"ssh-only"
]
},
"createbase": {
"Size": "m1.small",
"Image": "trusty",
"Key": "jserver",
"SecurityGroups": [
"default",
"ssh-only"
],
"Zone": "us-east-1a",
"Upgrade": "dist-upgrade",
"Group": "base",
"Pip": "base",
"Script": "server_init.sh"
},
"m3trusty": {
"Size": "m3.medium",
"Image": "trusty-m3",
"Key": "jserver",
"SecurityGroups": [
"default",
"django-dev",
"prod-web"
],
"Upgrade": "upgrade",
"Group": "base",
"Script": "post_launch.sh",
"ScriptFormatArgs": "@name",
"Adduser": {
"User": "joe",
"FullName": "Joseph Server",
"CopyFiles": [
{
"From": "~/.secrets/.gitconfig",
"To": "~/.gitconfig"
},
{
"From": "~/.secrets/.bash_project",
"To": "~/.bash_project"
}
],
"Script": "ubuntu_dotfiles.sh"
}
}
},
"Projects": {
"django-site": {
"Builds": [
{
"Build": "small-django",
"Num": 2
},
{
"Build": "micro-rabbit",
"Num": 1
}
]
}
}
}