Set up Python Docker environment with dependencies #6

Merged
overspend1 merged 1 commits from claude/setup-python-docker-01ANMAVZeNM96mEBWUbadrbn into main 2025-11-21 13:16:42 +01:00
3 changed files with 9 additions and 1 deletions

View File

@@ -9,6 +9,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
python3-dev \
build-essential \
linux-libc-dev \
libc6-dev \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install dependencies

View File

@@ -7,7 +7,7 @@ pydantic-settings==2.1.0
python-jose[cryptography]==3.3.0
passlib[bcrypt]==1.7.4
python-multipart==0.0.9
psutil==6.1.0
psutil==6.1.1
aiosqlite==0.19.0
websockets==12.0
python-dotenv==1.0.1

6
frontend/lib/utils.ts Normal file
View File

@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}