mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Use environment variable for the redis url in cable.yml
Move redis url from cable.yml to dotenv.example
This commit is contained in:
parent
de646019fb
commit
c21c9af60f
3 changed files with 5 additions and 1 deletions
|
|
@ -105,6 +105,7 @@ There are a couple of environment variables you can set to configure OSEM. Check
|
|||
| CLOUDINARY_URL | *string* | Configure your cloudinary.com cloud name and api key/secret
|
||||
| STRIPE_PUBLISHABLE_KEY | *string* | Publishable Key for Stripe Gateway
|
||||
| STRIPE_SECRET_KEY | *string* | Secret Key for Stripe Gateway
|
||||
| OSEM_REDIS_URL | *string* | Redis server URL e.g. redis://localhost:6379/1
|
||||
|
||||
### Online Ticket Payments
|
||||
We use [Stripe](https://stripe.com) for accepting your ticket payments securely over the web.
|
||||
|
|
|
|||
|
|
@ -6,4 +6,4 @@ test:
|
|||
|
||||
production:
|
||||
adapter: redis
|
||||
url: redis://localhost:6379/1
|
||||
url: <%= ENV['OSEM_REDIS_URL'] %>
|
||||
|
|
|
|||
|
|
@ -70,3 +70,6 @@ OSEM_ICHAIN_ENABLED=false
|
|||
# ReCAPTCHA keys
|
||||
RECAPTCHA_SITE_KEY=""
|
||||
RECAPTCHA_SECRET_KEY=""
|
||||
|
||||
# The url of the redis server
|
||||
OSEM_REDIS_URL='redis://localhost:6379/1'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue