feat!: initial prototype

This commit is contained in:
2025-08-12 17:25:52 +02:00
commit d38edb74b0
213 changed files with 8977 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
services:
db:
build:
context: .
dockerfile: docker/db.Dockerfile
container_name: db
restart: always
shm_size: 128mb
volumes:
- db_data:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: dev_pw
POSTGRES_USER: recipes
ports:
- "5432:5432"
volumes:
db_data: