Skip to content

Commit 63e6f00

Browse files
Tweak wording for configuration section
1 parent da1c1bf commit 63e6f00

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,18 +110,22 @@ Rails.application.configure do
110110
end
111111
```
112112

113-
However, if you need manual control over the Litestream configuration, you can manually edit the `config/litestream.yml` file. The full range of possible configurations are covered in Litestream's [configuration reference](https://litestream.io/reference/config/). Outside of configuring Litestream, you may also configure various other aspects of `litestream-ruby` itself.
113+
Outside of configuring Litestream's replication, you may also configure various other aspects of `litestream-ruby` itself.
114114

115115
```ruby
116116
# config/initializers/litestream.rb
117117
Rails.application.configure do
118+
# ...
119+
118120
# Base controller used for Litestream dashboard
119121
config.litestream.base_controller_class = "MyApplicationController"
120122
# Set the location of the Litestream config
121123
config.litestream.config_path = "config/litestream.yml"
122124
end
123125
```
124126

127+
However, if you need manual control over the Litestream configuration, you can edit the `config/litestream.yml` file. The full range of possible configurations are covered in Litestream's [configuration reference](https://litestream.io/reference/config/).
128+
125129
### Replication
126130

127131
In order to stream changes to your configured replicas, you need to start the Litestream replication process.

0 commit comments

Comments
 (0)