modified: .gitignore

modified:   ai-worker/worker.py
	modified:   server-app/main.go
This commit is contained in:
hubble_dubble
2026-01-26 01:04:58 +01:00
parent 3667c678e4
commit 4e235c2f28
3 changed files with 4 additions and 11 deletions

View File

@@ -210,7 +210,7 @@ func main() {
FROM articles
WHERE image IS NOT NULL
ORDER BY COALESCE(published_at, created_at) DESC
LIMIT 100
LIMIT 20
`)
if err != nil {
return err
@@ -226,7 +226,6 @@ func main() {
w.WriteHeader(http.StatusOK)
// Kickstart: sofort 1 Byte senden, damit Streaming „anfängt“
enc := json.NewEncoder(w)
@@ -238,7 +237,7 @@ func main() {
w.Write([]byte("\n"))
flusher.Flush()
for rows.Next() {
var title, link, summary string
var image *string