chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:34:31 +08:00
commit 4cfe66a27d
588 changed files with 62391 additions and 0 deletions
@@ -0,0 +1,11 @@
--- /Users/carlos/Developer/Wasp/open-saas/template-test/tools/../../template-test/base-app/app/src/auth/auth.wasp.ts
+++ template-test/app/src/auth/auth.wasp.ts
@@ -28,7 +28,7 @@
const emailAuthMethod: NonNullable<AuthMethods["email"]> = {
fromField: {
name: "Open SaaS App",
- email: "me@example.com",
+ email: "opensaastemplate@mg.wasp.sh",
},
emailVerification: {
clientRoute: "EmailVerificationRoute",
@@ -0,0 +1,15 @@
--- /Users/carlos/Developer/Wasp/open-saas/template-test/tools/../../template-test/base-app/app/src/server/emailSender.wasp.ts
+++ template-test/app/src/server/emailSender.wasp.ts
@@ -4,10 +4,10 @@
// NOTE: "Dummy" provider is just for local development purposes.
// Make sure to check the server logs for the email confirmation url (it will not be sent to an address)!
// Once you are ready for production, switch to e.g. "SendGrid" or "Mailgun" providers. Check out https://docs.opensaas.sh/guides/email-sending/ .
- provider: "Dummy",
+ provider: "SMTP",
defaultFrom: {
name: "Open SaaS App",
// When using a real provider, e.g. SendGrid, you must use the same email address that you configured your account to send out emails with!
- email: "me@example.com",
+ email: "opensaastemplate@mg.wasp.sh",
},
};