File size: 1,034 Bytes
e87fea1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# ==============================================
# BACKEND CONFIGURATION (Hugging Face / Local)
# ==============================================

# Qdrant Cloud Credentials
# Get these from https://cloud.qdrant.io
# If running locally with Docker, use: http://localhost:6333 and leave API_KEY empty
QDRANT_URL=https://your-cluster-id.region.qdrant.tech
QDRANT_API_KEY=your-super-secret-api-key-here

# Qdrant Settings (Optional)
# QDRANT_COLLECTION=bio_discovery

# ==============================================
# FRONTEND CONFIGURATION (Vercel / Local)
# ==============================================
# NOTE: For Next.js (Vercel), these usually go in ui/.env.local or Vercel Dashboard

# The URL where your Backend is running
# Local: http://localhost:8000
# Production (Hugging Face): https://your-space-name.hf.space
NEXT_PUBLIC_API_URL=http://localhost:8000

# The URL where your Frontend is running
# Local: http://localhost:3000
# Production (Vercel): https://your-project.vercel.app
NEXT_PUBLIC_APP_URL=http://localhost:3000