d822473ca6
Rationale: 1. Replaced synchronous locks with ZeroMQ PUB/SUB allowing fully asynchronous network topology for the Left Hemisphere nodes. 2. Introduced Lamport Logical Clocks to enforce causality during mathematical coupling without slowing down the Token Clock. 3. Created a Docker-Compose triad environment to simulate identical Emissaries achieving phase-lock before committing states to the Ledger.
9 lines
132 B
Docker
9 lines
132 B
Docker
FROM python:3.10-slim
|
|
|
|
WORKDIR /app
|
|
COPY pyproject.toml .
|
|
RUN pip install pyzmq
|
|
COPY becomingone/ becomingone/
|
|
|
|
ENV PYTHONPATH=/app
|