-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.docker.sample
More file actions
49 lines (42 loc) · 1.79 KB
/
Copy path.env.docker.sample
File metadata and controls
49 lines (42 loc) · 1.79 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
# ============================================
# Environment Variables for Golf Card Game
# ============================================
# Copy this file to .env and fill in your values
# NEVER commit .env to version control!
# ============================================
# PostgreSQL Configuration
# ============================================
# Strong password for PostgreSQL database
POSTGRES_PASSWORD=your_actual_password_with@symbols
POSTGRES_PASSWORD_ENCODED=your_actual_password_with%40symbols
# ============================================
# Application Configuration
# ============================================
# The external URL where your app will be accessible
# This is used in emails and other external links
# Example: https://golf.yourdomain.com
APP_URL=http://localhost:8080
# The port on the host machine to expose the app
# Default: 8080 (the app inside container always uses 8080)
HOST_PORT=8080
# ============================================
# Cloudflare Turnstile (CAPTCHA)
# ============================================
# Get these from: https://dash.cloudflare.com/
# Create a Turnstile widget for your domain
TURNSTILE_SECRET_KEY=your_turnstile_secret_key_here
# ============================================
# Resend Email Service
# ============================================
# Get API key from: https://resend.com/api-keys
RESEND_API_KEY=re_your_resend_api_key_here
RESEND_FROM_EMAIL=noreply@yourdomain.com
# ============================================
# GitHub Container Registry (for Watchtower)
# ============================================
# Your GitHub username
GITHUB_USERNAME=CodingArctic
# GitHub Personal Access Token with read:packages scope
# Create at: https://github.com/settings/tokens
# Required scopes: read:packages
GITHUB_TOKEN=ghp_your_github_personal_access_token_here