-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.docker
More file actions
87 lines (77 loc) · 4.06 KB
/
.env.docker
File metadata and controls
87 lines (77 loc) · 4.06 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# ==============================================================================
# APPLICATION SETTINGS
# Core application configuration
# ==============================================================================
APP_NAME="LCMS Core"
APPLICATION_DOMAIN=localhost:3000
# ==============================================================================
# DATABASE CONFIGURATION
# PostgreSQL database connection settings
# ==============================================================================
POSTGRESQL_ADDRESS= db
POSTGRESQL_DATABASE=lcms
POSTGRESQL_USERNAME=postgres
POSTGRESQL_PASSWORD=postgres
POSTGRESQL_PORT=5432
REDIS_URL=redis://redis:6379/0
# ==============================================================================
# AWS SERVICES
# Amazon Web Services configuration
# ==============================================================================
#AWS_ACCESS_KEY_ID= # AWS access key for authentication
#AWS_SECRET_ACCESS_KEY= # AWS secret key for authentication
#AWS_REGION= # AWS region (e.g., us-east-1, eu-west-1)
#AWS_S3_BUCKET_NAME= # S3 bucket name for file storage
# ==============================================================================
# BACKGROUND JOBS
# Configuration for asynchronous job processing
# ==============================================================================
#BACKGROUND_JOBS= # Enable/disable background job processing
#RESQUE_NAMESPACE= # Namespace for Resque jobs
#WORKERS_COUNT= # Number of worker processes
# ==============================================================================
# GOOGLE API INTEGRATION
# Google Drive and Apps Script integration settings
# ==============================================================================
#GOOGLE_APPLICATION_FOLDER_ID= # Google Drive folder ID for main storage
#GOOGLE_APPLICATION_PREVIEW_FOLDER_ID= # Google Drive folder ID for previews
#GOOGLE_APPLICATION_SCRIPT_ID= # Google Apps Script ID
#GOOGLE_APPLICATION_SCRIPT_FUNCTION= # Google Apps Script function name
#GOOGLE_APPLICATION_TEMPLATE_PORTRAIT= # Template ID for portrait layout
#GOOGLE_APPLICATION_TEMPLATE_LANDSCAPE= # Template ID for landscape layout
#GOOGLE_API_CLIENT_UPLOAD_RETRIES= # Number of retry attempts for uploads
#GOOGLE_API_CLIENT_UPLOAD_TIMEOUT= # Upload timeout in seconds
# ==============================================================================
# SEARCH & INDEXING
# Elasticsearch configuration for search functionality
# ==============================================================================
ELASTICSEARCH_ADDRESS=0.0.0.0
# ==============================================================================
# PDF GENERATION
# Tools and settings for PDF document generation
# ==============================================================================
GROVER_EXECUTABLE_PATH=/usr/bin/chromium
GROVER_NO_SANDBOX=true
PUPPETEER_TIMEOUT=3000
# ==============================================================================
# ERROR TRACKING
# Airbrake error monitoring service configuration
# ==============================================================================
#AIR_BRAKE_PROJECT_ID= # Airbrake project ID
#AIR_BRAKE_PROJECT_KEY= # Airbrake API key
# ==============================================================================
# CACHING & PERFORMANCE
# Performance optimization settings
# ==============================================================================
#ENABLE_BASE64_CACHING= # Enable caching for base64 encoded data
# ==============================================================================
# SECURITY
# Security and authentication settings
# ==============================================================================
#API_SECRET_KEY= # Secret key for API authentication
# ==============================================================================
# OTHER SERVICES
# Additional service configurations
# ==============================================================================
GIT_AUTHOR_EMAIL=ci@test.com
GIT_AUTHOR_NAME='ci user'