30 lines
934 B
Bash
Executable File
30 lines
934 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
# Document setup.
|
|
export AUTHOR_NAME="Testy McTestface"
|
|
export COMPANY_WEBSITE="https://example.com"
|
|
export DOCUMENT_TITLE="Home Performance Report"
|
|
export COMPANY_WEBSITE_DISPLAY="www.Example.com"
|
|
export COMPANY_PHONE="555-555-5555"
|
|
|
|
# Image paths.
|
|
export LOGO_IMAGE="img/logo.png"
|
|
export TRUEFLOW_IMAGE="img/trueflow.png"
|
|
export TRUEFLOW_FORECAST_IMAGE="img/forecast.png"
|
|
|
|
# Customer info.
|
|
export CUSTOMER_NAME="Testy McTestface"
|
|
export CUSTOMER_STREET="1234 Seasme Street"
|
|
export CUSTOMER_CITY_STATE_ZIP="Monroe, OH 45044"
|
|
|
|
# Home variables.
|
|
export HOME_LEAKAGE="4,186"
|
|
export HOME_SQUARE_FEET="1,350"
|
|
export HOME_LAIR="3:1"
|
|
|
|
# File links
|
|
export LOADS_FOLDER="https://example.com/path/to/loads/folder"
|
|
export TRUEFLOW_FILE="https://example.com/path/to/trueflow/file"
|
|
export TRUEFLOW_FORECAST_FILE="https://example.com/path/to/trueflow/forecast/file"
|
|
export DOCUMENT_FOLDER="https://example.com/path/to/document/folder"
|