saqib9810
saqib9810
WWasp
Created by Kynetix on 5/1/2025 in #đŸ™‹questions
What hosting do you use?
I use AWS. There is no specific reason for that. I'm just well-versed and fully immersed in the AWS ecosystem (for better or worse). My deployment looks like this: - RDS for Postgres - ECS for server deployment - Cloudflare pages for client deployment - SES for email (this one is not natively supported in Wasp via API) - Github actions for CI/CD to both ECS and Cloudflare - Terraform for infrastructure I'm sure other providers will also have similar features, but this is what I like most about AWS: 1. Fully private network with private subnets. You don't have to expose anything to the internet other than your load balancer's port 443. 2. Scalability and reliability of multi-az ECS deployment with Fargate. You never have to worry about failovers and hitting scale. Fargate spot can reduce the cost that no other provider can match. 3. RDS PITR, backups, encryption, etc. There is Aurora for better scalability, but it comes with a price tag. RDS serves me well for now. 4. SES is simple (as the name suggests) and cost-effective, although not feature-rich. Works pretty well for me. I've been thinking about creating PR for a guide for this deployment with a sample app.
7 replies
WWasp
Created by saqib9810 on 4/28/2025 in #đŸ™‹questions
Amazon SES API support for email
Thanks @miho That would work for my use case.
18 replies
WWasp
Created by saqib9810 on 4/28/2025 in #đŸ™‹questions
Amazon SES API support for email
Tried it out and it didn't work. It would've been a nice solution.
18 replies
WWasp
Created by saqib9810 on 4/28/2025 in #đŸ™‹questions
Amazon SES API support for email
// Use your custom signup action signup: { action: signup }
Can someone confirm if this is correct? I don't see this in the docs: https://wasp.sh/docs/auth/email#fields-in-the-email-dict
18 replies
WWasp
Created by saqib9810 on 4/28/2025 in #đŸ™‹questions
Amazon SES API support for email
@kapa.ai Can you please expand on the workaround and give a code sample for it? I'm using the email auth. How/where do I use my custom email sending code?
18 replies