Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DataGreed committed Jun 25, 2020
1 parent 34b116f commit 5e1b4cc
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ AWS_ACCESS_KEY_ID = "insert your key id here"
# your aws access key
AWS_SECRET_ACCESS_KEY = "insert your key here"
# queue name to use - queues that don't exist will be created automatically
AWS_EB_DEFAULT_QUEUE_NAME = "any_queue_name_ti_use"
AWS_EB_DEFAULT_QUEUE_NAME = "any_queue_name_to_use"
```

In the settings file for your **Web** tier environment add the following setting
Expand Down Expand Up @@ -89,8 +89,15 @@ from eb_sqs_worker.urls import urlpatterns as eb_sqs_urlpatterns
urlpatterns += eb_sqs_urlpatterns
```

Navigate to your Worker environment in Elastic Beanstalk Web console, then go to Configuration > Worker
and set HTTP path to `/sqs/`. Apply changes.
Navigate to your Worker environment in Elastic Beanstalk Web console, then go to _Configuration > Worker_
and set HTTP path to `/sqs/`.

You should also select the queue to use here corresponding to your `AWS_EB_DEFAULT_QUEUE_NAME`
or, if you prefer to use the autogenerated one, you can copy its name and set as your `AWS_EB_DEFAULT_QUEUE_NAME`.
If you don't see your `AWS_EB_DEFAULT_QUEUE_NAME` here, try sending first task to it (see *"Queueing tasks"* section)
and it will be automatically created for you (you may need to reload the page for it to appear here).

Apply changes.



Expand Down

0 comments on commit 5e1b4cc

Please sign in to comment.