Session fixes: auth working, frontend files created, running locally

- Fixed circular imports in API files
- Created missing frontend lib files (api.ts, socket.ts, types.ts)
- Fixed register endpoint to return token instead of user
- Updated Anthropic client version
- Backend running locally on port 8000
- Frontend running on port 3000
- Authentication working
- Still need: channel response fix, WebSocket auth fix
This commit is contained in:
JA
2026-02-14 04:45:39 +00:00
parent 5e85965cd8
commit 6d6b1d0fbb
9 changed files with 18 additions and 12 deletions

View File

@@ -6,7 +6,7 @@ WORKDIR /app
RUN apt-get update && apt-get install -y \
libpango-1.0-0 \
libpangoft2-1.0-0 \
libgdk-pixbuf2.0-0 \
libgdk-pixbuf-2.0-0 \
libffi-dev \
shared-mime-info \
&& rm -rf /var/lib/apt/lists/*