Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ GitHub sign-in is enabled when `GITHUB_CLIENT_ID` is set. If your OAuth app
requires it, set `GITHUB_CLIENT_SECRET` on the server too; the secret is only
used by the backend token exchange endpoint.

Assignment notification digests can be enabled with Resend:

```sh
TASKFORGE_EMAIL_PROVIDER=resend
TASKFORGE_EMAIL_FROM="TaskForge <notifications@example.com>"
RESEND_API_KEY="..."
TASKFORGE_PUBLIC_URL="https://your-taskforge-host.example"
```

For local development, set `TASKFORGE_EMAIL_PROVIDER=log` to print due digest
messages instead of sending them.

## Contributing

We welcome contributions! See [CONTRIBUTING.md](./CONTRIBUTING.md) — TL;DR:
Expand Down
7 changes: 7 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ <h1>TaskForge</h1>
autocomplete="off"
required
/>
<input
id="assignee-input"
type="email"
name="assignee"
placeholder="Assignee email"
autocomplete="email"
/>
<button type="submit">Add</button>
</form>

Expand Down
Loading