forked from PauseAI/pauseai-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.env
More file actions
29 lines (24 loc) · 1.36 KB
/
template.env
File metadata and controls
29 lines (24 loc) · 1.36 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
# Hey local developer. Copy this to a .env file
# Data re people, teams, and national-groups - uses placeholders if unset in local development
AIRTABLE_API_KEY = ""
# Used for email verification endpoints - optional for local development
AIRTABLE_WRITE_API_KEY = ""
# Used for the /chat feature - optional for most local development
OPENAI_KEY = ""
# Used for the /write feature - optional for most local development
ANTHROPIC_API_KEY_FOR_WRITE = ""
# Localization (i.e. translation) settings
# The set of all locales is defined in project.inlang/default-settings.js,
# but we allow an environment variable override because using fewer locales
# can significantly improve local development convenience and build speed!
# Default: "en" for local development, "all" in CI/CD environments
# This is a comma-separated list. "-" switches into exclude mode. Examples: "en", "en,nl", "all", "-de,fr"
PARAGLIDE_LOCALES=en
# Only set this if you want to test generation of new l10n content locally
# (Normally l10n content is generated only in CI/CD pipelines)
# If this is empty, only existing l10n content from the cache will be used
L10N_OPENROUTER_API_KEY=""
# Add your OpenRouter API key above to enable l10n generation
# Optionally override which branch of the l10n cache to use
# (defaults to same name as current website branch, or 'main' if on main)
# L10N_BRANCH="my-feature-branch"