-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
50 lines (45 loc) · 1.88 KB
/
Copy path.env.example
File metadata and controls
50 lines (45 loc) · 1.88 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
# App configuration source of truth
#
# Copy this file to .env, .env.development, or .env.production.
# These APP_CONFIG_* values are used directly by the app, Vite build, Capacitor config,
# and validation scripts.
#
# Precedence (highest last):
# .env -> .env.local -> .env.<mode> -> .env.<mode>.local
#
# IMPORTANT: This app is client-facing. Do not put secrets in env files.
# Required core settings
APP_CONFIG_VERSION=1.0
APP_CONFIG_COMPANY_NAME=Your Company
APP_CONFIG_APP_NAME=Enterprise Support
APP_CONFIG_APP_ID=com.enterprise.support
APP_CONFIG_DOMAIN=example.com
APP_CONFIG_CONTACTS_EMAIL=ithelpdesk@example.com
# Optional string fields (leave empty to omit these optional values)
APP_CONFIG_APP_SUBTITLE=IT Help & Documentation
APP_CONFIG_VPN_PORTAL=vpn.example.com
APP_CONFIG_CONTACTS_EMERGENCY_EMAIL=security@example.com
# Feature flags (true/false)
APP_CONFIG_FEATURES_TAG_FILTERING=false
APP_CONFIG_FEATURES_PDF_DOCUMENTS=true
APP_CONFIG_FEATURES_WORD_DOCUMENTS=true
APP_CONFIG_FEATURES_IMAGE_DOCUMENTS=true
# Regional contacts as JSON array
# Example:
# APP_CONFIG_CONTACTS_REGIONS_JSON=[{"region":"Americas","city":"Charlotte, NC (HQ)","phone":"+1 (704) 805-7200","hours":"7:00 AM - 7:00 PM EST"}]
APP_CONFIG_CONTACTS_REGIONS_JSON=[]
# App Store Connect metadata source of truth (used by scripts/prepare-fastlane-metadata.cjs)
# All values must be explicitly set in .env (or mode/local overrides) before release.
# Use \n for line breaks in long fields.
APP_STORE_PRIMARY_CATEGORY=<REPLACE>
APP_STORE_SECONDARY_CATEGORY=<REPLACE>
APP_STORE_EN_US_NAME=<REPLACE>
APP_STORE_EN_US_SUBTITLE=<REPLACE>
APP_STORE_EN_US_DESCRIPTION=<REPLACE>
APP_STORE_EN_US_KEYWORDS=<REPLACE>
APP_STORE_EN_US_MARKETING_URL=<REPLACE>
APP_STORE_EN_US_PRIVACY_URL=<REPLACE>
APP_STORE_EN_US_PROMOTIONAL_TEXT=<REPLACE>
APP_STORE_EN_US_RELEASE_NOTES=<REPLACE>
APP_STORE_EN_US_SUPPORT_URL=<REPLACE>
APP_STORE_EN_US_COPYRIGHT=<REPLACE>