Skip to content

Commit 1e7432c

Browse files
committed
bumping version to 0.1.0 🐍
1 parent 555066d commit 1e7432c

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

README.md

+13-12
Original file line numberDiff line numberDiff line change
@@ -55,35 +55,36 @@ a simple web ui is included for exploring configuration
5555

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

58-
### build
58+
### running
5959

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

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

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

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

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

7272
~~~sh
73-
fig up
73+
lein do clean, ring uberjar
7474
~~~
7575

76-
using [docker](https://docker.io) for deployment:
76+
Once built, there are a few different ways to run oroboros in your environment.
77+
78+
using [fig](http://www.fig.sh/) for development:
7779

7880
~~~sh
79-
docker run -v $PWD/examples:/etc/oroboros/configs -p 8080:80 egghead/oroboros
81+
fig up
8082
~~~
8183

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

8486
~~~sh
85-
cd examples
86-
java -jar ../target/oroboros-0.1.0-SNAPSHOT-standalone.jar
87+
lein trampoline ring server-headless
8788
~~~
8889

8990
Once you have the server started, play around with editing the configs, or create some of your own.

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject oroboros "0.1.0-SNAPSHOT"
1+
(defproject oroboros "0.1.0"
22
:description "FIXME: write description"
33
:url "http://example.com/FIXME"
44
:min-lein-version "2.0.0"

0 commit comments

Comments
 (0)