-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (37 loc) · 2 KB
/
.env.example
File metadata and controls
44 lines (37 loc) · 2 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
36
37
38
39
40
41
42
43
44
# =============================================================================
# DecodingUs Environment Configuration
# =============================================================================
# Copy this file to .env and fill in the values for your environment.
# NEVER commit .env to version control!
# =============================================================================
# -----------------------------------------------------------------------------
# Application Security
# -----------------------------------------------------------------------------
# Generate with: openssl rand -base64 64 | tr -d '\n'
APPLICATION_SECRET=changeme-generate-a-real-secret
# -----------------------------------------------------------------------------
# Database Configuration
# -----------------------------------------------------------------------------
# For local development with docker-compose, these are set in docker-compose.yml
# For production, set these to your RDS or external PostgreSQL instance
# Main database
DATABASE_URL=jdbc:postgresql://localhost:5432/decodingus_db
DATABASE_USER=decodingus_user
DATABASE_PASSWORD=your-secure-password
# Metadata database (can be same as main or separate)
METADATA_DATABASE_URL=jdbc:postgresql://localhost:5432/decodingus_metadata
# -----------------------------------------------------------------------------
# reCAPTCHA (Production)
# -----------------------------------------------------------------------------
ENABLE_RECAPTCHA=false
RECAPTCHA_SITE_KEY=your-recaptcha-site-key
RECAPTCHA_SECRET_KEY=your-recaptcha-secret-key
# -----------------------------------------------------------------------------
# Contact Form
# -----------------------------------------------------------------------------
CONTACT_RECIPIENT_EMAIL=contact@decoding-us.com
# -----------------------------------------------------------------------------
# Docker Registry (Production CI/CD)
# -----------------------------------------------------------------------------
DOCKER_REGISTRY=
IMAGE_TAG=latest