mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-28 16:26:24 +02:00
⚡️ Add support for using SES API (#573)
This commit is contained in:
parent
d5c3017a8b
commit
8ab67683cf
6 changed files with 810 additions and 18 deletions
16
apps/web/declarations/environment.d.ts
vendored
16
apps/web/declarations/environment.d.ts
vendored
|
@ -68,6 +68,22 @@ declare global {
|
|||
* "true" to require authentication for creating new polls and accessing admin pages
|
||||
*/
|
||||
AUTH_REQUIRED?: string;
|
||||
/**
|
||||
* Determines what email provider to use. "smtp" or "ses"
|
||||
*/
|
||||
EMAIL_PROVIDER?: "smtp" | "ses";
|
||||
/**
|
||||
* AWS access key ID
|
||||
*/
|
||||
AWS_ACCESS_KEY_ID?: string;
|
||||
/**
|
||||
* AWS secret access key
|
||||
*/
|
||||
AWS_SECRET_ACCESS_KEY?: string;
|
||||
/**
|
||||
* AWS region
|
||||
*/
|
||||
AWS_REGION?: string;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue