Skip to content
Snippets Groups Projects
Commit ada432a9 authored by Art's avatar Art :lizard:
Browse files

Update README.md and the default broker port setting.

parent e4e8f7b4
Branches hsh_3.10
No related tags found
No related merge requests found
......@@ -16,14 +16,19 @@ import pikatasks
##### Configure:
```python
pikatasks.settings.BROKER = "localhost"
pikatasks.settings.BROKER_HOST = "localhost"
pikatasks.settings.BROKER_PORT = "5671"
pikatasks.settings.SSL_ENABLED = False
pikatasks.settings.VIRTUAL_HOST = "foo"
pikatasks.settings.USERNAME = "lancelot"
pikatasks.settings.PASSWORD = "swalloWcoc0nut"
```
Or in Django settings:
```python
PIKATASKS_BROKER = "localhost"
PIKATASKS_BROKER_HOST = "localhost"
PIKATASKS_BROKER_PORT = "5671"
PIKATASKS_SSL_ENABLED = False
PIKATASKS_VIRTUAL_HOST = "foo"
PIKATASKS_USERNAME = "lancelot"
PIKATASKS_PASSWORD = "swalloWcoc0nut"
......
......@@ -12,7 +12,7 @@ from datetime import timedelta
# stuff you want to change:
BROKER_HOST = "localhost"
BROKER_PORT = "5672"
BROKER_PORT = "5671"
VIRTUAL_HOST = "vhost"
USERNAME = "user"
PASSWORD = "password"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment