Skip to content

Commit

Permalink
Rename project.
Browse files Browse the repository at this point in the history
Update README too.
  • Loading branch information
jvandyke committed Aug 23, 2013
1 parent f83beca commit 117ead9
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 27 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -8,3 +8,4 @@ classes
.idea/
*.iml
.lein*
create-jar.sh
23 changes: 19 additions & 4 deletions README.md
@@ -1,7 +1,9 @@
# lein-beanstalk
# lein-elastic-beanstalk

Leiningen plugin for Amazon's [Elastic Beanstalk][1].

This is an updated version of @weavejester's repo.

## Prerequisites

You will need an [Amazon Web Services][2] account, and know your
Expand All @@ -14,15 +16,15 @@ You will also need to be signed up for Elastic Beanstalk.
To use lein-beanstalk, you'll need to add a few additional values to
your `project.clj` file.

First, add lein-beanstalk as a plugin:
First, add lein-elastic-beanstalk as a plugin:
```clojure
:plugins [[lein-beanstalk "0.2.7"]]
:plugins [[lein-elastic-beanstalk "0.2.8-SNAPSHOT"]]
```

or, if you're using a version of Leiningen prior to 1.7.0, add it to
your `:dev-dependencies`:
```clojure
:dev-dependencies [[lein-beanstalk "0.2.7"]]
:dev-dependencies [[lein-elastic-beanstalk "0.2.8-SNAPSHOT"]]
```
Then add a `lein-beanstalk-credentials` definition to your
`~/.lein/init.clj` file that contains your AWS credentials:
Expand Down Expand Up @@ -310,6 +312,19 @@ application. e.g. for Compojure add
(HEAD "/" [] "")
```

## Credit

This plugin was originally written by [weavejester](https://github.com/weavejester).

We've also incorporated some pull requests that we needed from contributors to that project:

* [Allow users to supply a WAR file while deploying](https://github.com/weavejester/lein-beanstalk/pull/27) by unknown
* [Note System/getProperty must be used to access environment variables](https://github.com/weavejester/lein-beanstalk/pull/29) by @osbert
* [Document how to choose an alternate stack and the likely choices](https://github.com/weavejester/lein-beanstalk/pull/30) by @osbert
* [Support passthrough of additional ConfigurationOptionSettings](https://github.com/weavejester/lein-beanstalk/pull/31) by @osbert

We also welcome your contributions and will do our best to keep this repo updated.

[1]: http://aws.amazon.com/elasticbeanstalk
[2]: http://aws.amazon.com
[3]: http://aws.amazon.com/s3
Expand Down
21 changes: 0 additions & 21 deletions create-jar.sh

This file was deleted.

4 changes: 2 additions & 2 deletions project.clj
@@ -1,6 +1,6 @@
(defproject lein-beanstalk "0.2.8"
(defproject lein-elastic-beanstalk "0.2.8-SNAPSHOT"
:description "Leiningen plugin for Amazon's Elastic Beanstalk"
:url "https://github.com/weavejester/lein-beanstalk"
:url "https://github.com/ktgit/lein-elastic-beanstalk"
:dependencies [[org.clojure/clojure "1.2.1"]
[com.amazonaws/aws-java-sdk "1.3.31"]
[lein-ring "0.8.2"]]
Expand Down

0 comments on commit 117ead9

Please sign in to comment.