-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
55 lines (43 loc) · 2.09 KB
/
.env.example
File metadata and controls
55 lines (43 loc) · 2.09 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
55
# EmberDocs Configuration
# Copy this file to .env.local and customize as needed
# All variables are optional - EmberDocs works with sensible defaults
# Branding (optional)
# Default product name is "EmberDocs"
EMBERDOCS_PRODUCT_NAME="EmberDocs"
# Company or organization name (used in headers, metadata, and page titles)
# If set, page titles will be formatted as: {PRODUCT_NAME} - {COMPANY_NAME} Documentation
EMBERDOCS_COMPANY_NAME="Your Company Name"
# Default author name (used when document frontmatter doesn't specify an author)
EMBERDOCS_DEFAULT_AUTHOR="Your Name"
# Primary URL for your company/product (used in links and metadata)
EMBERDOCS_PRIMARY_URL=https://your-url.com
# Logo Configuration (optional)
# Path to your logo image (relative to /public directory)
# Supported formats: PNG, SVG, JPG
# Example: /logos/your-logo.png
# EMBERDOCS_LOGO_PATH=/logos/your-logo.png
# Navigation Links (optional)
# Header navigation links as JSON object
# Format: {"Label": "URL", "Another Label": "Another URL"}
# External links must start with http:// or https://
# Internal links start with /
# EMBERDOCS_HEADER_LINKS={"Docs": "/docs", "Features": "/#features", "GitHub": "https://github.com/yourorg"}
# Footer Configuration (optional)
# Footer text content (e.g., copyright notice)
# EMBERDOCS_FOOTER_TEXT="Your Company © 2025"
# Footer links as JSON object (same format as header links)
# EMBERDOCS_FOOTER_LINKS={"Privacy": "/privacy", "Terms": "/terms", "Contact": "/contact"}
# Content Configuration (optional)
# Custom documentation content directory (default: docs/examples)
# EMBERDOCS_CONTENT_DIR=docs/examples
# Custom documentation base route (default: /docs)
# URLs will be served at this path instead of /docs/*
# EMBERDOCS_BASE_ROUTE=/docs
# Framework Mode (only for EmberDocs framework repository)
# Set to true to show the EmberDocs marketing landing page at root (/)
# Default: false (root redirects to /docs/index)
# EMBERDOCS_SHOW_LANDING=false
# Theme Selection
# Choose the theme for both landing page and documentation pages
# Options: dark (default), light, monochrome
# EMBERDOCS_THEME=monochrome