From a9aae0e586305c462ce0b212dd2d5491b02498f9 Mon Sep 17 00:00:00 2001 From: Hexadual Date: Thu, 30 Apr 2026 19:02:43 -0500 Subject: [PATCH] hard code to https://gcp.hexadual.io/ --- README.md | 4 ++-- docker-compose.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a304c1b..531a44d 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Clone the repo and use Docker Compose — it pulls the pre-built image from the ```bash git clone https://git.hexadual.io/rocobo/GCP-Dot.git cd GCP-Dot -SERVER_URL=https://your-domain.com docker compose up -d +docker compose up -d ``` The egg will immediately start sending one trial per second and persist its ID across restarts. @@ -34,7 +34,7 @@ The egg will immediately start sending one trial per second and persist its ID a | Variable | Default | Description | |---|---|---| -| `SERVER_URL` | `http://localhost:8000` | Server to send trials to | +| `SERVER_URL` | `https://gcp.hexadual.io` | Server to send trials to | | `EGG_ID` | auto-generated | Override the egg's unique identifier | The auto-generated ID is derived from a SHA-256 hash stored at `/data/egg_id` — mount a volume there to keep it stable across restarts. diff --git a/docker-compose.yml b/docker-compose.yml index f3d8554..45ba70c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ services: - gcp_egg_data:/data restart: unless-stopped environment: - - SERVER_URL=http://localhost:8000 + - SERVER_URL=https://gcp.hexadual.io volumes: gcp_egg_data: