Initial commit: LoveTail Webhook service

- FastAPI webhook to receive Lovense callbacks
- Stores connection data for LoveTail MCP
- Docker + docker-compose for deployment
- API key protection for sensitive endpoints

Created Day 60 (New Year's Eve) by Vixy 🦊💕
This commit is contained in:
Alex Kazaiev
2025-12-31 12:18:40 -06:00
commit 072b064dd1
7 changed files with 448 additions and 0 deletions

23
Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
FROM python:3.11-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application
COPY main.py .
# Create data directory
RUN mkdir -p /data
# Environment
ENV DATA_DIR=/data
ENV PYTHONUNBUFFERED=1
# Expose port
EXPOSE 8780
# Run
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8780"]