-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (23 loc) · 1.07 KB
/
Copy path.env.example
File metadata and controls
26 lines (23 loc) · 1.07 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
# Must match the port Next prints (e.g. 3004 if 3000 is busy). Restart inngest after changing:
# docker compose up -d inngest
NEXT_DEV_PORT=3000
DATABASE_URL="postgresql://adloom:adloom@localhost:5432/adloom?schema=public"
GEMINI_API_KEY=
# Optional override for chat / gap-fill / localization (default: gemini-2.5-flash)
# GEMINI_TEXT_MODEL=gemini-2.5-flash
MINIO_ENDPOINT=localhost
MINIO_PORT=9000
MINIO_ACCESS_KEY=adloom
MINIO_SECRET_KEY=adloom123
MINIO_BUCKET=adloom-assets
# Inngest — with `npm run dev`, the client uses dev mode (no event key).
# If `inngest.send` still asks for a key, set INNGEST_DEV=1 and run the dev server:
# npx inngest-cli@latest dev -u http://127.0.0.1:3000/api/inngest
# Production (next start / hosting): set keys from the Inngest dashboard.
# INNGEST_DEV=1
# Set to 1 to fail fast when Inngest dev server is down (no in-process fallback).
# INNGEST_DISABLE_INLINE_FALLBACK=1
# INNGEST_SIGNING_KEY=
# INNGEST_EVENT_KEY=
# Approve / gap-fill: log merged brief, full prompt, model output to the server terminal (grep [adloom:brief])
# ADLOOM_DEBUG_BRIEF=1