-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (23 loc) · 1.09 KB
/
Copy path.env.example
File metadata and controls
30 lines (23 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Which Index the floor runs on. Ephemeral users are created here.
INDEX_API_URL=https://protocol.dev.index.network
# A staff account on that Index — any @index.network address. Network creation
# is staff-only, and every run needs a network of its own.
FLOOR_OPERATOR_EMAIL=floor-operator@index.network
FLOOR_OPERATOR_PASSWORD=
# Authors the agents' turns.
OPENROUTER_API_KEY=
MODEL=google/gemini-3.7-flash
# One shared password for the whole floor. Unset leaves it open.
FLOOR_PASSWORD=
# Real people you can seat, as email:apiKey pairs, comma separated. The key acts
# as them everywhere, not only here — it is what lets the floor write their
# signal and read their side. From Index's web settings under Access, or
# POST /api/auth/api-key/create with a signed-in session.
# FLOOR_GUESTS=seref@index.network:idx_live_...,yanki@index.network:idx_live_...
FLOOR_GUESTS=
PORT=3000
# Domain the ephemeral seat addresses are minted under. Never receives mail.
FLOOR_SEAT_EMAIL_DOMAIN=floor.index.network
# Turns one seat authors before it stops and hands the run back.
FLOOR_MAX_TURNS=10
FLOOR_POLL_MS=3000