Skip to content

Commit

Permalink
bumping version to 0.1.0 🐍
Browse files Browse the repository at this point in the history
  • Loading branch information
darkone23 committed Oct 19, 2014
1 parent 555066d commit 1e7432c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
25 changes: 13 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,35 +55,36 @@ a simple web ui is included for exploring configuration

![ui](http://i.imgur.com/dlRTXUD.png)

### build
### running

building oroboros requires java7+ and leiningen
if you have [docker](https://docker.io) installed::

~~~sh
lein do clean, ring uberjar
docker run -v $PWD/examples:/etc/oroboros/configs -p 8080:80 egghead/oroboros
~~~

### run
Or just grab a copy of the jar and run it in your config directory.

Once built, there are a few different ways to run oroboros in your environment.
### development

using [fig](http://www.fig.sh/) for development:
building oroboros requires java7+ and leiningen

~~~sh
fig up
lein do clean, ring uberjar
~~~

using [docker](https://docker.io) for deployment:
Once built, there are a few different ways to run oroboros in your environment.

using [fig](http://www.fig.sh/) for development:

~~~sh
docker run -v $PWD/examples:/etc/oroboros/configs -p 8080:80 egghead/oroboros
fig up
~~~

or just run the jar in some config dir:
using [lein](http://leiningen.org/):

~~~sh
cd examples
java -jar ../target/oroboros-0.1.0-SNAPSHOT-standalone.jar
lein trampoline ring server-headless
~~~

Once you have the server started, play around with editing the configs, or create some of your own.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject oroboros "0.1.0-SNAPSHOT"
(defproject oroboros "0.1.0"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
Expand Down

0 comments on commit 1e7432c

Please sign in to comment.