Initial wws serverless functions setup

- Add health check API endpoint (/api)
- Add chat proxy to n8n workflow (/chat)
- Add webhook receiver for external integrations (/webhook)
- Add Dockerfile for container deployment
- Add wws.toml configuration

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-15 05:42:45 +01:00
parent 4aba1199fa
commit c8a8ea007d
6 changed files with 282 additions and 2 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM ghcr.io/vmware-labs/wws:latest
WORKDIR /app
# Copy all functions
COPY . .
EXPOSE 8080
# wws automatically serves files from /app
CMD ["wws", "."]