Complete Refactor - Changed to Django

This commit is contained in:
2025-11-11 08:14:04 +00:00
commit 24b0422864
197 changed files with 62230 additions and 0 deletions

58
Dockerfile Normal file
View File

@@ -0,0 +1,58 @@
# =============================================
# 1. Base image — Python with system dependencies
# =============================================
FROM python:3.12-slim AS base
ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
PIP_NO_CACHE_DIR=off \
PIP_DISABLE_PIP_VERSION_CHECK=on
WORKDIR /app
# System deps for psycopg2, node (for Tailwind), etc.
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
libpq-dev \
curl \
nodejs \
npm \
&& rm -rf /var/lib/apt/lists/*
# =============================================
# 2. Install Python dependencies
# =============================================
COPY requirements.txt .
RUN pip install --upgrade pip \
&& pip install -r requirements.txt
# =============================================
# 3. Build Tailwind assets
# =============================================
# If youre using django-tailwind or npm-based Tailwind build
#COPY ./frontend ./frontend
#WORKDIR /app/frontend
#RUN npm install && npm run build
# =============================================
# 4. Collect static assets
# =============================================
WORKDIR /app
COPY . .
RUN python manage.py collectstatic --noinput
# =============================================
# 5. Create non-root user
# =============================================
RUN adduser --disabled-password --gecos '' djangouser
USER djangouser
EXPOSE 80
# =============================================
# 6. Launch the app
# =============================================
CMD ["gunicorn", "keywarden.wsgi:application", "--bind", "0.0.0.0:8000", "--workers", "3"]