Skip to content

Commit

Permalink
chore: Include .env.example for local queue provisioning (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
nadeesha authored Dec 14, 2024
1 parent c4d974f commit f2b2ab2
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ web_modules/

# dotenv environment variable files
.env*
!.env.example

# parcel-bundler cache (https://parceljs.org/)
.cache
Expand Down
37 changes: 37 additions & 0 deletions control-plane/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Provisioning queues locally via ElasticMQ
#
# SQS_RUN_PROCESS_QUEUE_URL='http://localhost:9324/dev-run-process'
# SQS_RUN_GENERATE_NAME_QUEUE_URL='http://localhost:9324/dev-run-generate-name'
# SQS_LEARNING_INGEST_QUEUE_URL='http://localhost:9324/dev-learning-ingest'
# SQS_CUSTOMER_TELEMETRY_QUEUE_URL='http://localhost:9324/dev-customer-telemetry'
# SQS_EXTERNAL_TOOL_CALL_QUEUE_URL='http://localhost:9324/dev-external-tool-call'
#
# curl -X POST \
# 'http://localhost:9324/dev-run-generate-name' \
# -H 'Content-Type: application/x-www-form-urlencoded' \
# --data-urlencode 'Action=CreateQueue' \
# --data-urlencode 'QueueName=dev-run-generate-name'

# curl -X POST \
# 'http://localhost:9324/dev-run-process' \
# -H 'Content-Type: application/x-www-form-urlencoded' \
# --data-urlencode 'Action=CreateQueue' \
# --data-urlencode 'QueueName=dev-run-process'

# curl -X POST \
# 'http://localhost:9324/dev-learning-ingest' \
# -H 'Content-Type: application/x-www-form-urlencoded' \
# --data-urlencode 'Action=CreateQueue' \
# --data-urlencode 'QueueName=dev-learning-ingest'

# curl -X POST \
# 'http://localhost:9324/dev-customer-telemetry' \
# -H 'Content-Type: application/x-www-form-urlencoded' \
# --data-urlencode 'Action=CreateQueue' \
# --data-urlencode 'QueueName=dev-customer-telemetry'

# curl -X POST \
# 'http://localhost:9324/dev-external-tool-call' \
# -H 'Content-Type: application/x-www-form-urlencoded' \
# --data-urlencode 'Action=CreateQueue' \
# --data-urlencode 'QueueName=dev-external-tool-call'

0 comments on commit f2b2ab2

Please sign in to comment.