-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.env.example
More file actions
54 lines (39 loc) · 1.65 KB
/
.env.example
File metadata and controls
54 lines (39 loc) · 1.65 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
# Optional; adds a prefix to docker image names
COMPOSE_PROJECT_NAME=allaboutberlin
# Used for newsletter management
# https://buttondown.com/keys
BUTTONDOWN_API_KEY=...
# Used for inline currency conversion
# https://openexchangerates.org/account/app-ids/
OPENEXCHANGERATES_API_KEY=...
# Used to create and update places in the backend - Maps Places API
# https://console.cloud.google.com/apis/credentials/
GOOGLE_MAPS_PLACES_API_KEY=...
# Used for Google Places Autocomplete in the frontend - Maps JavaScript + Places API
# https://console.cloud.google.com/apis/credentials/
GOOGLE_MAPS_JAVASCRIPT_API_KEY=...
# Used to generate pronunciation audio for glossary items - Cloud text-to-speech API
# https://console.cloud.google.com/apis/credentials/
GOOGLE_TTS_API_KEY=...
# API credentials to import place suggestions from the All About Berlin API
ALLABOUTBERLIN_API_USERNAME=...
ALLABOUTBERLIN_API_PASSWORD=...
# OpenAI API key for LLM filtering
OPENAI_API_KEY=...
# = PRODUCTION CONFIG ==========================================================
# Load the production configuration for docker
COMPOSE_FILE=docker-compose.yml:docker-compose.prod.yml
# Configuration for GitHub webhooks
GITHUB_WEBHOOK_SECRET=...
# The domain and email used to generate SSL certificates
SSL_DOMAIN=allaboutberlin.com
SSL_EMAIL=contact@allaboutberlin.com
# Used to clear the cloudflare cache
CLOUDFLARE_API_KEY=...
CLOUDFLARE_ZONE=...
# Used to send transactional emails
MAILGUN_API_KEY=...
# Where API database backups are stored on the host machine
DB_BACKUPS_PATH=/path/to/db/backups
# Optional: Where remote backups are copied via rsync
REMOTE_DB_BACKUPS_PATH=user@server:/path/to/db-backups