61299a33c4
Mirror to GitHub / mirror (push) Successful in 26s
Test and Lint / backend-test (push) Successful in 1m23s
continuous-integration/drone/push Build is passing
Test and Lint / frontend-test (push) Successful in 2m12s
Version and Release / version-bump (push) Successful in 39s
Version and Release / trigger-drone (push) Successful in 3s
- Updated frontend to Node 20 to fix Vite crypto.hash error - Removed mailhog service as not needed for development - Updated email configuration to be disabled by default in dev - Fixed frontend port mapping to use 3005 consistently - Added script to show/reset admin credentials - Removed unnecessary storage volume mount 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
40 lines
907 B
Bash
40 lines
907 B
Bash
# Development Environment with PostgreSQL
|
|
# Copy this to .env for PostgreSQL development with Docker Compose
|
|
|
|
# JWT Secret (development only)
|
|
JWT_SECRET=dev-secret-key-do-not-use-in-production
|
|
|
|
# Database Configuration (PostgreSQL)
|
|
DATABASE_CLIENT=pg
|
|
DB_USER=picpeak_dev
|
|
DB_PASSWORD=dev_password_123
|
|
DB_NAME=picpeak_dev
|
|
|
|
# Redis Configuration
|
|
REDIS_PASSWORD=dev_redis_pass
|
|
|
|
# Admin Account (initial setup)
|
|
ADMIN_USERNAME=admin
|
|
ADMIN_EMAIL=admin@localhost
|
|
|
|
# Email Configuration (Disabled for development)
|
|
# To enable email, configure a real SMTP server
|
|
SMTP_HOST=
|
|
SMTP_PORT=
|
|
SMTP_SECURE=false
|
|
SMTP_USER=
|
|
SMTP_PASS=
|
|
EMAIL_FROM=noreply@picpeak.local
|
|
|
|
# Application URLs
|
|
FRONTEND_URL=http://localhost:3000
|
|
ADMIN_URL=http://localhost:3001
|
|
VITE_API_URL=http://localhost:3001/api
|
|
|
|
# Timezone
|
|
TZ=UTC
|
|
|
|
# Analytics (Optional - leave empty for development)
|
|
VITE_UMAMI_URL=
|
|
VITE_UMAMI_WEBSITE_ID=
|
|
VITE_UMAMI_SHARE_URL= |