20 lines
335 B
Plaintext
20 lines
335 B
Plaintext
# Server Configuration
|
|
PORT=3000
|
|
NODE_ENV=development
|
|
|
|
# CORS Configuration
|
|
CORS_ORIGIN=*
|
|
|
|
# Gemini AI Configuration
|
|
GEMINI_API_KEY=your_gemini_api_key_here
|
|
|
|
# File Upload Configuration
|
|
MAX_FILE_SIZE=5242880
|
|
MAX_FILES=3
|
|
|
|
# Directory Configuration
|
|
RESULTS_DIR=./results
|
|
UPLOADS_DIR=./uploads/temp
|
|
|
|
# Logging Configuration
|
|
LOG_LEVEL=info |