Reorganized for new stable/waypoint versioning design.

This commit is contained in:
2026-05-24 18:28:47 +00:00
parent 945d2225a2
commit bc7a168851
352 changed files with 1264 additions and 294 deletions

32
smtp/versions/1/README.md Normal file
View File

@@ -0,0 +1,32 @@
# SMTP Configuration Service
This is a config-only package that other apps reference via the dependency system. It does not deploy any Kubernetes resources.
## Overview
The SMTP package configures global SMTP settings that Wild Cloud applications use for sending transactional emails (password resets, invitations, notifications).
## Usage
Apps that need SMTP add it as a dependency in their manifest:
```yaml
requires:
- name: smtp
```
Then reference SMTP config in their defaultConfig:
```yaml
defaultConfig:
smtpHost: "{{ .apps.smtp.host }}"
smtpPort: "{{ .apps.smtp.port }}"
```
## Supported Providers
- **AWS SES**: Use your Access Key ID as user and Secret Access Key as password
- **Gmail/Google Workspace**: Use your email as user and an App Password as password
- **SendGrid**: Use `apikey` as user and your API key as password
- **Mailgun**: Use your Mailgun username and password
- **Other SMTP providers**: Use your standard SMTP credentials

View File

@@ -0,0 +1,8 @@
version: 1.0.0
defaultConfig:
host: ""
port: "465"
user: ""
from: "no-reply@{{ .cloud.domain }}"
tls: "true"
startTls: "true"