From 1e7432c19dd135e30fc85455699ae9292330cc5f Mon Sep 17 00:00:00 2001 From: Thomas Omans Date: Sat, 18 Oct 2014 21:05:26 -0700 Subject: [PATCH] bumping version to 0.1.0 :snake: --- README.md | 25 +++++++++++++------------ project.clj | 2 +- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index f2d36a0..bcd3bac 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/project.clj b/project.clj index 9192701..e44a1a8 100644 --- a/project.clj +++ b/project.clj @@ -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"