update and gitignore

This commit is contained in:
2025-10-05 03:55:18 +00:00
commit 97572905bb
13 changed files with 415 additions and 0 deletions

25
tandoor/.env Normal file
View File

@@ -0,0 +1,25 @@
# ---------------------------------------------------------------------------
# This template contains only required options.
# Visit the docs to find more https://docs.tandoor.dev/system/configuration/
# ---------------------------------------------------------------------------
# random secret key, use for example `base64 /dev/urandom | head -c50` to generate one
SECRET_KEY=2upOGCars1jUqN+TZ5l1ossqYeN9DztGj1uJ+H8QAskPmfxZFz
# your default timezone See https://timezonedb.com/time-zones for a list of timezones
TZ=America/New_York
# allowed hosts (see documentation), should be set to your hostname(s) but might be * (default) for some proxies/providers
# ALLOWED_HOSTS=*
# add only a database password if you want to run with the default postgres, otherwise change settings accordingly
DB_ENGINE=django.db.backends.postgresql
POSTGRES_HOST=db_recipes
POSTGRES_DB=djangodb
POSTGRES_PORT=5432
POSTGRES_USER=djangouser
POSTGRES_PASSWORD=password
TANDOOR_PORT=2295
GUNICORN_MEDIA=1

View File

@@ -0,0 +1,40 @@
services:
db_recipes:
restart: always
image: postgres:16-alpine
volumes:
- postgresql:/var/lib/postgresql/data
env_file:
- .env
deploy:
resources:
limits:
cpus: '1.0'
memory: 500M
web_recipes:
restart: always
image: vabene1111/recipes
ports:
- "2295:2295"
# - "5432:5432"
env_file:
- .env
volumes:
- ./staticfiles:/opt/recipes/staticfiles
- ./mediafiles:/opt/recipes/mediafiles
depends_on:
- db_recipes
deploy:
resources:
limits:
cpus: '1.0'
memory: 1000M
volumes:
staticfiles:
postgresql:
networks:
web:
driver: bridge