business model canvas and new build pipeline
This commit is contained in:
14
build/StartupStarterPackage.yml
Normal file
14
build/StartupStarterPackage.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
title: "(DRAFT): Redwood Springs Capital Partners: Startup Starter Package (DRAFT) for YourLLC"
|
||||
titlepage: true
|
||||
author: "Redwood Springs Capital Partners LLC"
|
||||
date: \today
|
||||
toc: true
|
||||
toc-own-page: true
|
||||
header-left: "\\hspace{1cm}"
|
||||
header-center: "\\leftmark"
|
||||
header-right: "Page \\thepage"
|
||||
footer-left: "DRAFT/Example Document"
|
||||
footer-center: "Copyright Redwood Springs Capital Partners LLC"
|
||||
footer-right: "Not legally binding"
|
||||
page-background: "D:/tsys/@ReachableCEO/ExternalVendorCode/pandoc-latex-template/examples/page-background/backgrounds/background5.pdf"
|
||||
urlcolor: blue
|
@@ -1,12 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
OUTPUT_BASE_DIR="../YourLLC"
|
||||
LLC_NAME="YourLLC"
|
||||
|
||||
PDF_OUTPUT_FILE="$OUTPUT_BASE_DIR/$LLC_NAME-Contract.pdf"
|
||||
MD_OUTPUT_FILE="$OUTPUT_BASE_DIR/$LLC_NAME-Contract.md"
|
||||
|
||||
source common.sh
|
||||
|
||||
prevRunCleanup
|
||||
makeOutput
|
@@ -1,8 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
export SSP_INPUT_MD="../build-tempdir/ssp-combined.md"
|
||||
|
||||
export SSP_RENDERED_MD="../build-tempdir/RedwoodSpringsCapitalPartners-StartupStarterPackage.md"
|
||||
export SSP_RENDERED_PDF="../build-tempdir/RedwoodSpringsCapitalPartners-StartupStarterPackage.pdf"
|
||||
|
||||
function prevRunCleanup()
|
||||
{
|
||||
|
||||
rm $MD_OUTPUT_FILE
|
||||
rm $PDF_OUTPUT_FILE
|
||||
# Start from a clean slate and remove all previous output
|
||||
|
||||
rm $SSP_INPUT_MD
|
||||
rm $SSP_RENDERED_MD
|
||||
rm $SSP_RENDERED_PDF
|
||||
|
||||
}
|
||||
|
||||
@@ -50,18 +60,28 @@ for file in ${boilerplate_files[@]}; do
|
||||
cat $file >> $MD_OUTPUT_FILE
|
||||
done
|
||||
|
||||
#pandoc \
|
||||
# --from=markdown \
|
||||
# --number-sections \
|
||||
## --toc \
|
||||
# --output=$1.pdf
|
||||
|
||||
pandoc \
|
||||
< $MD_OUTPUT_FILE \
|
||||
--from=markdown \
|
||||
--number-sections \
|
||||
--toc \
|
||||
--output=$PDF_OUTPUT_FILE
|
||||
|
||||
# --to=pdf \
|
||||
}
|
||||
|
||||
main()
|
||||
{
|
||||
|
||||
|
||||
|
||||
# Expand variables into an intermediate markdown file for conversion to PDF
|
||||
|
||||
./mo $SSP_INPUT_MD > $SSP_RENDERED_MD
|
||||
|
||||
# Convert to PDF
|
||||
|
||||
pandoc \
|
||||
$SSP_RENDERED_MD \
|
||||
--number-sections \
|
||||
--template eisvogel \
|
||||
--metadata-file=StartupStarterPackage.yml \
|
||||
--from markdown \
|
||||
--output ./build-output/$SSP_RENDERED_PDF
|
||||
|
||||
}
|
||||
|
||||
prevRunCleanup
|
||||
makeOutput
|
Reference in New Issue
Block a user