Skip to content

mpraglowski/cqrses-sample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Sample code to shop how easy build CQRS & Event Sourcing into Rails application.

To run it you must have working Event Store (http://geteventstore.com) available on http://localhost:2113

If you want change default configuration setup in in lib/storage_injector.rb with:

def storage
  @storage ||= HttpEventstore::Connection.new do |config|
    config.endpoint = 'localhost'
    config.port = 2113
  end
end