spb/coinexplorer Public MIT
Self-hosted, zero-API-key explorer for stablecoins and major crypto.
Python 60.3%
HTML 23.6%
JavaScript 8.1%
CSS 6.8%
SQL 1%
1# Author: Simon-Pierre Boucher2# Mail: contact@spboucher.ai3FROM python:3.12-slim45WORKDIR /app6COPY requirements.txt .7RUN pip install --no-cache-dir -r requirements.txt89COPY config/ config/10COPY indexer/ indexer/11COPY api/ api/12COPY scripts/ scripts/13COPY run_indexer.py .1415# same image runs both roles; compose picks the command16CMD ["python", "run_indexer.py"]17