renote_dac 0.0.160 → 0.0.161
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +23 -2
- data/lib/renote_dac/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c4a0d234d96ddb16f0eed27a660e048048ef37e831167dfcfba55235b36979c
|
4
|
+
data.tar.gz: d30e85b61725e6971ea6a9c11917b76f646be30b57a9884a8349d889713aa31a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac13ad7d1004fb8630701812572f49ff577661315ff690b85d2f69d04c4debf6cfc415c12313bc384d6d0753715d4754d33cf46970217dcb14ec167e898d3bc8
|
7
|
+
data.tar.gz: 7b4d1c4d55a6545c67c4c7da8aff1285c37d765b2349ce1a1b7cb08f467503b75547b2aae177f1882a24bf800b9291707f3558c68dd2836f522acaa32d653ec4
|
data/README.md
CHANGED
@@ -68,9 +68,9 @@ run the following rake task to
|
|
68
68
|
|
69
69
|
`rake app:renote_dac:deploy`
|
70
70
|
|
71
|
-
|
71
|
+
### Configure
|
72
72
|
|
73
|
-
|
73
|
+
#### Postmark
|
74
74
|
|
75
75
|
add the 'config' gem to your application. Add the following line to your gemfile
|
76
76
|
|
@@ -102,6 +102,27 @@ Add your api token to your renote_dac initializer.
|
|
102
102
|
c.postmark_api_key = Settings.postmark.api_token
|
103
103
|
```
|
104
104
|
|
105
|
+
## Production
|
106
|
+
|
107
|
+
### Heroku Deploy
|
108
|
+
|
109
|
+
You can attach RabbitMQ Bigwig to a Heroku application via the CLI
|
110
|
+
|
111
|
+
```bash
|
112
|
+
heroku addons:create rabbitmq-bigwig
|
113
|
+
-----> Adding rabbitmq-bigwig to sharp-mountain-4005... done, v18 (free)
|
114
|
+
```
|
115
|
+
|
116
|
+
Once you have added RabbitMQ Bigwig you will find `RABBITMQ_BIGWIG_TX_URL` and `RABBITMQ_BIGWIG_RX_URL` settings in the app configuration. These contain the canonical URLs used to access the newly provisioned RabbitMQ Bigwig service instance. You can confirm this using the `heroku config:get` command.
|
117
|
+
|
118
|
+
```bash
|
119
|
+
heroku config:get RABBITMQ_BIGWIG_RX_URL
|
120
|
+
amqp://user:pass@instance.ip/resourceid
|
121
|
+
```
|
122
|
+
```bash
|
123
|
+
heroku config:get RABBITMQ_BIGWIG_TX_URL
|
124
|
+
amqp://user:pass@instance.ip/resourceid2
|
125
|
+
```
|
105
126
|
## Contributing
|
106
127
|
Contribution directions go here.
|
107
128
|
|
data/lib/renote_dac/version.rb
CHANGED