-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (27 loc) · 1.03 KB
/
Copy path.env.example
File metadata and controls
35 lines (27 loc) · 1.03 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
31
32
33
34
35
# Copy to .env and fill in. Never commit .env.
# Postgres (Neon connection string)
DATABASE_URL=postgres://user:password@host/dbname?sslmode=require
# HTTP
PORT=8080
# Auth
JWT_SECRET=change-me-to-a-long-random-string
# AI product copy generation. Free key from https://aistudio.google.com/apikey
#
# GEMINI_MODEL is an alias that tracks the current Flash model. Pinned
# versions such as gemini-2.5-flash are closed to new accounts and
# gemini-2.0-flash has no free-tier quota, so the alias is the reliable
# default. Override it here rather than in code if behaviour shifts.
GEMINI_API_KEY=
GEMINI_MODEL=gemini-flash-latest
# Image storage: "local" writes to disk so the project runs with no cloud
# account at all; "gcs" is what production uses.
STORAGE_DRIVER=local
LOCAL_STORAGE_DIR=./uploads
GCS_BUCKET=
# Set to "true" to log every SQL statement. Development only.
LOG_SQL=false
# "development" or "production". Drives Secure cookies, among other things.
ENVIRONMENT=development
# Stripe (test mode)
STRIPE_SECRET_KEY=
STRIPE_WEBHOOK_SECRET=