diff --git a/README.md b/README.md index 6496c2c..4e95681 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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.