From: František Dvořák Date: Tue, 7 Jun 2016 13:39:21 +0000 (+0200) Subject: Helper Makefile. X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=5aab7295bf722baa507e80dd4291733e5deed95c;p=now.git Helper Makefile. --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b6be076 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +all: run + +run: Gemfile.lock + bundle exec rackup + +check: + : + +Gemfile.lock: + bundle install + +.PHONY: all run check diff --git a/README.md b/README.md index ae0b615..70d5fdf 100644 --- a/README.md +++ b/README.md @@ -7,3 +7,10 @@ This is the component to extend OpenNebula network orchestration capabilities. ``` rackup ``` + +## Development +``` +make run +``` + +It calls `rackup` through bundler.