44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
<<<<<<< HEAD
|
|
import os
|
|
from pathlib import Path
|
|
from dotenv import load_dotenv
|
|
|
|
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
|
BASE_DIR = Path(__file__).resolve().parent.parent
|
|
|
|
# Lade .env Datei
|
|
load_dotenv(BASE_DIR / '.env')
|
|
|
|
# E-Mail-Einstellungen (temporär Console-Backend)
|
|
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
|
|
DEFAULT_FROM_EMAIL = 'Fursuit Shop <noreply@fursuitshop.com>'
|
|
|
|
# Admin-E-Mail-Empfänger
|
|
ADMINS = [
|
|
('Shop Admin', 'admin@fursuitshop.com'),
|
|
]
|
|
|
|
# Lagerbestand-Einstellungen
|
|
=======
|
|
import os
|
|
from pathlib import Path
|
|
from dotenv import load_dotenv
|
|
|
|
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
|
BASE_DIR = Path(__file__).resolve().parent.parent
|
|
|
|
# Lade .env Datei
|
|
load_dotenv(BASE_DIR / '.env')
|
|
|
|
# E-Mail-Einstellungen (temporär Console-Backend)
|
|
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
|
|
DEFAULT_FROM_EMAIL = 'Fursuit Shop <noreply@fursuitshop.com>'
|
|
|
|
# Admin-E-Mail-Empfänger
|
|
ADMINS = [
|
|
('Shop Admin', 'admin@fursuitshop.com'),
|
|
]
|
|
|
|
# Lagerbestand-Einstellungen
|
|
>>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb
|
|
LOW_STOCK_THRESHOLD = 5 # Schwellenwert für niedrigen Lagerbestand |