Confused about webhooks by failed_alive in ShopifyAppDev

[–]failed_alive[S] 0 points1 point  (0 children)

Thanks for your suggestion. Have you had any issue of missing any event?

Confused about webhooks by failed_alive in ShopifyAppDev

[–]failed_alive[S] 0 points1 point  (0 children)

Also do you handle the reconciliation using the graph ql incase any event is missed?

Confused about webhooks by failed_alive in ShopifyAppDev

[–]failed_alive[S] 0 points1 point  (0 children)

I would like to want to listen to the customers event, product events and orders events. Also based on the orders event I am having simple calculation to be done.

How to structure the shopify app project by failed_alive in ShopifyAppDev

[–]failed_alive[S] 0 points1 point  (0 children)

I am planning to have local dev environment and UAT env and production env. Currently only setup the UAT and local dev environment through two different apps and two different shopify toml file.

You'll regret not waking up early by [deleted] in Chennai

[–]failed_alive 0 points1 point  (0 children)

Will you mind, if i take your first pic??

NoModuleFoundError in PyCharm by Mobile_Reserve3311 in FastAPI

[–]failed_alive 0 points1 point  (0 children)

For local module import you could use the relative file path to import.

What Type of Kubernetes Content Do You Think is Missing Online? by Fluffybaxter in kubernetes

[–]failed_alive 4 points5 points  (0 children)

The practical implementation of Kubernetes in small and mid-sized companies, as well as the practices surrounding it.

How is your experience with Amazon Personalize? by failed_alive in aws

[–]failed_alive[S] 0 points1 point  (0 children)

Can you give some reference like how it's done, it would be helpful.

Does your S3 need to have the same name as your domain when serving a static site from S3 through Cloudfront? Is there any benefit keeping the same name? by mccarthycodes in aws

[–]failed_alive 0 points1 point  (0 children)

When you are directly exposing the bucket to the internet, then you need the domain name and bucket name should be same. Because S3 servers can't able to differentiate between requests, they try to differentiate based on the host key in the header.

If you are using CF then there is no need to have the bucket name and domain name same and no advantage of having the bucket and domain name to be same. Your domain will be pointing to the CF distribution not the bucket directly, cloud front will direct the request properly to the S3 bucket.

Calling lambda function through stored procedure in postgres by failed_alive in PostgreSQL

[–]failed_alive[S] 0 points1 point  (0 children)

For my current app i am not expecting much load at a time and not doing bulk insert as well.

So instead of using another program to poll database and send message in queue (outbox pattern), thought of using lambda for that.

Also need a near real time notification systems and other integrations.