-
Notifications
You must be signed in to change notification settings - Fork 102
fix(point-of-sale): added bruno script + added missing env variables to local docker compose file #3629
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(point-of-sale): added bruno script + added missing env variables to local docker compose file #3629
Changes from 2 commits
606d215
14728c4
b824561
77b3c62
69bf632
2c17a92
e08e900
d6743f1
49e5ae3
73e0c3c
91402d1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| meta { | ||
| name: Initiate Payment | ||
| type: http | ||
| seq: 3 | ||
| } | ||
|
|
||
| post { | ||
| url: http://localhost:3008/payment | ||
| body: json | ||
| auth: inherit | ||
| } | ||
|
|
||
| body:json { | ||
| { | ||
| "card": { | ||
| "walletAddress": "http://localhost:3000/accounts/gfranklin", | ||
|
||
| "trasactionCounter": 1, | ||
| "expiry": "2025-09-13T13:00:00Z" | ||
| }, | ||
| "signature": "signature", | ||
| "value": 1, | ||
| "merchantWalletAddress": "http://localhost:3000/accounts/gfranklin" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -23,6 +23,10 @@ services: | |||||
| LOG_LEVEL: debug | ||||||
| CARD_SERVICE_PORT: 3007 | ||||||
| DATABASE_URL: postgresql://cloud_nine_wallet_card_service:cloud_nine_wallet_card_service@shared-database/cloud_nine_wallet_card_service | ||||||
| GRAPHQL_URL: http://cloud-nine-wallet-backend:3001/graphql | ||||||
| TENANT_ID: 438fa74a-fa7d-4317-9ced-dde32ece1787 | ||||||
| TENANT_SECRET: tenant_secret | ||||||
|
||||||
| TENANT_SIGNATURE_VERSION: tenant_signature_version | ||||||
|
||||||
| TENANT_SIGNATURE_VERSION: tenant_signature_version | |
| TENANT_SIGNATURE_VERSION: 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's do this, such that the incoming payment will be on the happy-life side of things, and cloud nine will pay into it.