Paintings get editable curator notes with brass plates in the 3D hall, and visit order now uses the far/end wall between left and right. Co-authored-by: Cursor <cursoragent@cursor.com>
32 lines
1.1 KiB
Bash
32 lines
1.1 KiB
Bash
# Development only — copy to .env (not committed). All day-to-day work uses gallery_dev.
|
|
# Promote to prod on a scheduled release (~weekly); see Documentation/environments.md
|
|
DB_HOST=192.168.10.122
|
|
DB_PORT=5432
|
|
DB_USER=gallery
|
|
DB_PASSWORD=YOUR_POSTGRES_PASSWORD
|
|
DB_NAME=gallery_dev
|
|
|
|
# Public dev URL (Keenetic → 192.168.10.70:5173)
|
|
# Local-only coding: npm run dev:server + dev:client on 3520 / 5173 instead
|
|
PORT=3451
|
|
HOST=0.0.0.0
|
|
PUBLIC_URL=https://devgallery.mysuperlab.netcraze.pro
|
|
TRUST_PROXY=true
|
|
|
|
IMAGE_DIR=./data/images
|
|
|
|
# Curator auth (run npm run dev:migrate after setting CURATOR_PASSWORD)
|
|
# Reset password anytime: npm run dev:reset-curator
|
|
SESSION_SECRET=change-me-to-a-long-random-string
|
|
# Omit SESSION_COOKIE_SECURE for auto (HTTPS via proxy → Secure cookie). Set true/false to force.
|
|
CURATOR_USERNAME=curator
|
|
CURATOR_PASSWORD=
|
|
|
|
# Production uses infra/docker/.env.prod → gallery_prod at gallery.mysuperlab.netcraze.pro:5173
|
|
# See Documentation/environments.md
|
|
|
|
# Optional — enable extra museum search in fetch-missing-images / search-missing-paintings
|
|
# SMITHSONIAN_API_KEY=
|
|
# HARVARD_ART_API_KEY=
|
|
# FETCH_MAX_WAIT_SEC=10
|