feat: migrate AI to llama and use local db
All checks were successful
Deploy / lint-build-deploy (push) Successful in 2m13s

This commit is contained in:
2026-01-19 21:25:38 +01:00
parent 6e75be19ed
commit a8d3bf1b3b
10 changed files with 12059 additions and 980 deletions

View File

@@ -1,8 +1,16 @@
version: '3.8'
services:
app:
build:
context: .
dockerfile: Dockerfile
postgres:
image: postgres:16-alpine
container_name: newsletter-db
environment:
- POSTGRES_USER=newsletter
- POSTGRES_PASSWORD=newsletter
- POSTGRES_DB=newsletter
ports:
- '3000:3000'
- '5432:5432'
volumes:
- postgres-data:/var/lib/postgresql/data
volumes:
postgres-data: