-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.env.example
More file actions
44 lines (36 loc) · 2.28 KB
/
config.env.example
File metadata and controls
44 lines (36 loc) · 2.28 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
#!/bin/bash
# ═══════════════════════════════════════════════════════════
# EVC — Configuration
# Copy to config.env and fill in your values.
# Only the REQUIRED section is needed to get started.
# ═══════════════════════════════════════════════════════════
# ── REQUIRED (gets you running in 5 minutes) ──────────────
COMPANY_NAME="Acme Corp"
WEBSITE_URL="acme.com"
SOCIAL_HANDLE_X="@acmecorp"
ANCHOR_STATEMENT="Acme does X so brands can achieve Y without Z."
BRAND_PRIMARY_COLOR="#00c891"
# ── RECOMMENDED (unlocks more commands) ───────────────────
COMPANY_SLUG="acme"
SOCIAL_HANDLE_LINKEDIN="acme-corp"
BRAND_SECONDARY_COLOR="#111827"
PROOF_POINT_1="CustomerA" # Your best case study or reference customer
PROOF_POINT_2="CustomerB" # Your second proof point
DEFUNCT_REFERENCE="OldBrand" # Something you never mention publicly
PRODUCT_CORE_NAME="Platform" # Your main product name
# ── OPTIONAL (CMS, project management, advanced) ─────────
# CMS_PLATFORM="framer" # framer, wordpress, webflow, ghost
# CMS_COLLECTION_ID="" # Blog CMS collection ID
# CMS_BLOG_LISTING_ID="" # Blog listing component ID
# CMS_BLOG_DETAIL_ID="" # Blog detail component ID
# LINEAR_TEAM_PREFIX="MAR" # Linear team prefix for issue creation
# X_METRICS_SCRIPT="" # Path to your X/Twitter metrics script
# COMPLIANCE_JURISDICTIONS="US,EU,UK" # Regions for /compliance-check disclaimers
# DISCORD_CHANNEL_IDS="" # For /community-harvest
# TELEGRAM_GROUP_IDS="" # For /community-harvest
# ── SECRETS (stored in .secrets/, never here) ─────────────
# These are REFERENCES to files in .secrets/, not the keys themselves.
# Run setup.sh to create the .secrets/ directory with correct permissions.
# X_BEARER_TOKEN_FILE=".secrets/x-token"
# SLACK_TOKEN_FILE=".secrets/slack-token"
# CMS_API_KEY_FILE=".secrets/cms-api-key"