chore: migrate CI to Gitea actions and update module path

This commit is contained in:
2026-07-26 20:29:01 +02:00
parent 1b700f7975
commit db3860328b
13 changed files with 60 additions and 60 deletions
+3 -3
View File
@@ -28,7 +28,7 @@
```bash
# 1. Clone
git clone https://codeberg.org/petrbalvin/nuntius.git
git clone https://sourcedock.dev/petrbalvin/nuntius.git
cd nuntius
# 2. Build
@@ -121,7 +121,7 @@ await fetch(`${import.meta.env.VITE_NUNTIUS_URL || ''}/api/nuntius/contact`, {
`pkg/contactform` is a small, dependency-free Go package that you can import into any project:
```go
import "codeberg.org/petrbalvin/nuntius/pkg/contactform"
import "sourcedock.dev/petrbalvin/nuntius/pkg/contactform"
req := &contactform.Request{
Name: "Jane",
@@ -170,7 +170,7 @@ Form types and full schema: [`docs/configuration.md`](docs/configuration.md). Se
- **Go 1.26+** (uses Go 1.22+ `http.ServeMux` method patterns and `log/slog`)
- An **SMTP** account (Yandex, Mailgun, Postmark, your own Postfix, …)
- **No other runtime dependencies.** No Node, no Python, no Redis, no Postgres. Configuration is TOML parsed via the first-party [`interpres`](https://codeberg.org/petrbalvin/interpres) library; newsletter storage is an append-only JSONL file via `bufio`.
- **No other runtime dependencies.** No Node, no Python, no Redis, no Postgres. Configuration is TOML parsed via the first-party [`interpres`](https://sourcedock.dev/petrbalvin/interpres) library; newsletter storage is an append-only JSONL file via `bufio`.
## Development