Express.js + Chart.js dashboard for LibreChat usage analytics. Queries MongoDB transactions collection for model/agent usage, costs, and top users. Dark theme with Montserrat font, black/gold (#FFC407) color scheme. Docker-ready with API key authentication. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 lines
144 B
Docker
7 lines
144 B
Docker
FROM node:20-alpine
|
|
WORKDIR /app
|
|
COPY package.json package-lock.json* ./
|
|
RUN npm ci --production
|
|
COPY . .
|
|
EXPOSE 3001
|
|
CMD ["node", "server.js"]
|