save receipes

This commit is contained in:
Jun-te Kim 2026-02-23 21:41:29 +00:00
parent e9148bc1af
commit 93341e9142

View file

@ -110,6 +110,18 @@ spec:
value: tandoorpassword
- name: POSTGRES_DB
value: tandoor
- name: SITE_URL
value: https://mealcraft.com
- name: ALLOWED_HOSTS
value: mealcraft.com
- name: CSRF_TRUSTED_ORIGINS
value: https://mealcraft.com
- name: NGINX_PROXY
value: "1"
- name: DEBUG
value: "1"
- name: SECURE_PROXY_SSL_HEADER
value: HTTP_X_FORWARDED_PROTO,https
volumeMounts:
- mountPath: /var/lib/postgresql/data
name: postgres-storage
@ -191,31 +203,37 @@ spec:
containers:
- name: tandoor
image: vabene1111/recipes:latest
image: vabene1111/recipes:1.5.24
env:
- name: SECRET_KEY
value: replace-with-long-random-string
- name: DB_ENGINE
value: django.db.backends.postgresql
- name: POSTGRES_HOST
value: tandoor-postgres
- name: POSTGRES_PORT
value: "5432"
- name: POSTGRES_DB
value: tandoor
- name: POSTGRES_USER
value: tandoor
- name: POSTGRES_PASSWORD
value: tandoorpassword
- name: POSTGRES_DB
value: tandoor
- name: REDIS_HOST
value: tandoor-redis
- name: REDIS_PORT
value: "6379"
- name: REDIS_URL
value: redis://tandoor-redis:6379/0
- name: ALLOWED_HOSTS
value: "*"
value: mealcraft.com
- name: CSRF_TRUSTED_ORIGINS
value: https://mealcraft.com
- name: NGINX_PROXY
value: "1"
- name: DEBUG
value: "0"