initial release - connectd daemon
find isolated builders with aligned values and connect them.
also finds lost builders - people with potential who haven't started yet.
features:
- multi-platform discovery (github, reddit, mastodon, lemmy, discord, etc)
- values-based matching
- lost builder detection and outreach
- LLM-powered personalized intros
- multi-channel delivery (email, mastodon, bluesky, matrix, discord, github)
- fully autonomous daemon mode
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-15 15:33:32 +00:00
|
|
|
FROM python:3.11-slim
|
|
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
# install deps
|
|
|
|
|
COPY requirements.txt .
|
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
|
|
|
# copy app
|
|
|
|
|
COPY . .
|
|
|
|
|
|
2025-12-15 15:39:06 +00:00
|
|
|
# create data directories (db files stored in /data, not /app/db)
|
|
|
|
|
RUN mkdir -p /data/db /data/cache
|
|
|
|
|
|
|
|
|
|
# set DB path via env
|
|
|
|
|
ENV DB_PATH=/data/db/connectd.db
|
|
|
|
|
ENV CACHE_DIR=/data/cache
|
initial release - connectd daemon
find isolated builders with aligned values and connect them.
also finds lost builders - people with potential who haven't started yet.
features:
- multi-platform discovery (github, reddit, mastodon, lemmy, discord, etc)
- values-based matching
- lost builder detection and outreach
- LLM-powered personalized intros
- multi-channel delivery (email, mastodon, bluesky, matrix, discord, github)
- fully autonomous daemon mode
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-15 15:33:32 +00:00
|
|
|
|
|
|
|
|
# default command runs daemon
|
|
|
|
|
CMD ["python", "daemon.py"]
|