Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bedrock-adam authored Dec 26, 2024
1 parent c97adce commit 9f0bf2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

## Background

Outboxer is an ActiveRecord implementation of the transactional outbox pattern for PostgreSQL and MySQL databases.
Outboxer is a Rails 7 implementation of the transactional outbox pattern.

## Setup

Expand All @@ -21,7 +21,7 @@ gem 'outboxer'
bundle install
```

### 3. generate schema, publisher script and job
### 3. generate schema and publisher

```bash
bin/rails g outboxer:install
Expand All @@ -36,8 +36,6 @@ bin/rake db:migrate
### 5. Publish message

```ruby
# bin/outboxer_publisher

Outboxer::Publisher.publish do |message|
# TODO: publish message to your broker here

Expand All @@ -46,6 +44,8 @@ Outboxer::Publisher.publish do |message|
end
```

See: [publisher best practices](https://github.com/fast-programmer/outboxer/wiki/Publisher-best-practices) for common integration examples including with sidekiq

### 6. run publisher

```bash
Expand Down

0 comments on commit 9f0bf2f

Please sign in to comment.