Skip to content

Commit a26aa42

Browse files
committed
README and LICENSE.
1 parent 5af0ab8 commit a26aa42

File tree

2 files changed

+81
-0
lines changed

2 files changed

+81
-0
lines changed

LICENSE

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Copyright 2011 DevStructure. All rights reserved.
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
1. Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above
11+
copyright notice, this list of conditions and the following
12+
disclaimer in the documentation and/or other materials provided
13+
with the distribution.
14+
15+
THIS SOFTWARE IS PROVIDED BY DEVSTRUCTURE ``AS IS'' AND ANY EXPRESS
16+
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18+
DISCLAIMED. IN NO EVENT SHALL DEVSTRUCTURE OR CONTRIBUTORS BE LIABLE
19+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
25+
THE POSSIBILITY OF SUCH DAMAGE.
26+
27+
The views and conclusions contained in the software and documentation
28+
are those of the authors and should not be interpreted as representing
29+
official policies, either expressed or implied, of DevStructure.

README.md

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# `python-cloudformation`
2+
3+
## Tools for creating CloudFormation templates
4+
5+
`python-cloudformation` transforms Python source code representations of AWS CloudFormation templates into JSON. It's most useful for automating tedious user data manipulation in its very rudimentary "templating language."
6+
7+
## Usage
8+
9+
See the simple example in [`python-cloudformation`(7)])http://devstructure.github.com/python-cloudformation/python-cloudformation.7.html).
10+
11+
## Installation
12+
13+
Prerequisites:
14+
15+
* Python >= 2.6
16+
17+
### From source on Mac OS X, Debian, Ubuntu, and Fedora
18+
19+
git clone git://github.com/devstructure/python-cloudformation.git
20+
cd blueprint && make && sudo make install
21+
22+
### From source on CentOS and RHEL
23+
24+
rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm
25+
yum install python26
26+
git clone git://github.com/devstructure/blueprint.git
27+
cd blueprint && make && sudo make install PYTHON=/usr/bin/python26
28+
29+
This installs Python 2.6 from EPEL side-by-side with Python 2.4 and so won't break yum.
30+
31+
### With a package manager
32+
33+
DevStructure maintains Debian packages and Python eggs for Blueprint. See [Installing with a package manager](https://github.com/devstructure/python-cloudformation/wiki/Installing-with-a-package-manager) on the wiki.
34+
35+
## Documentation
36+
37+
The [Blueprint tutorial](https://devstructure.com/docs/tutorial.html) works through creating and deploying a simple web application via Blueprint.
38+
39+
## Manuals
40+
41+
* [`python-cloudformation`(7)](http://devstructure.github.com/python-cloudformation/python-cloudformation.7.html)
42+
43+
## Contribute
44+
45+
`python-cloudformation` is [BSD-licensed](https://github.com/devstructure/python-cloudformation/blob/master/LICENSE).
46+
47+
* Source code: <https://github.com/devstructure/python-cloudformation>
48+
* Issue tracker: <https://github.com/devstructure/python-cloudformation/issues>
49+
* Documentation: <https://devstructure.com/docs/>
50+
* Wiki: <https://github.com/devstructure/python-cloudformation/wiki>
51+
* Mailing list: <https://groups.google.com/forum/#!forum/blueprint-users>
52+
* IRC: `#devstructure` on Freenode

0 commit comments

Comments
 (0)