fixed it up to be redwood based vs tsys based. the eagle flys at dawn

This commit is contained in:
Charles N Wyble - admin 2020-10-16 23:43:13 -05:00
parent 0144012332
commit a39d9ef5b8

View File

@ -1,57 +1,16 @@
# ForProfitOpAgreement # Texas LLC Operating Agreement Template
This is the operating agreement (in combination with items found in the CommonBoilerplate repo) Hello.
used by :
* Suborbital Systems Development Co LLC So you want to start a company in the great state of Texas, and you want to sink in
* RackRental Operating Company LLC years of blood/sweat/tears and not take any of Redwoods cash?
* (and a basis for) Redwood
(you can find the redwood agreement in its own repo ) Awesome!!!! Welcome to the party!
No warranties, express or implied. It's worked well for us, YMWV!!! Let's get this out of the way:
Also no build pipeline is provided. Our private repos have a build pipeline (bash script with * No warranties express or implied.
cat and pandoc, nothing fancy). You should be able to knock something up easily.
Here's an old version of our pipeline. It should get you started. Otherwise, here's the keys, hack as needed, stay out of court and don't fly too close
Don't open issues re build of the contract, they will be closed WONTFIX and your LDAP account disabled to the sun! YeHah!
#!/bin/bash
OUTPUT_FILE="Contract-SuboLLC.pdf"
MD_FILE_CONCAT="SuboLLC.md"
rm $MD_FILE_CONCAT
rm $OUTPUT_FILE
#Company specfic bits
cat title.md >> $MD_FILE_CONCAT
cat CompanyNameAndPurpose.md >> $MD_FILE_CONCAT
cat grantToMembers.md >> $MD_FILE_CONCAT
#Common/base bits below...
BASEBITS="/home/charles/code/TSG"
cat $BASEBITS/CommonBoilerplate/defs.md >> $MD_FILE_CONCAT
cat $BASEBITS/CommonBoilerplate/boilerplate.md >> $MD_FILE_CONCAT
cat $BASEBITS/CommonBoilerplate/remove.md >> $MD_FILE_CONCAT
cat $BASEBITS/CommonBoilerplate/profInterest.md >> $MD_FILE_CONCAT
cat $BASEBITS/CommonBoilerplate/nda.md >> $MD_FILE_CONCAT
cat $BASEBITS/CommonBoilerplate/ip-assign.md >> $MD_FILE_CONCAT
cat /home/charles/code/TSG/ForProfitOpAgreement/TxLLC-ForProfit-MultiMember-ProfitInterestGrant-OpAgreement.md >> $MD_FILE_CONCAT
pandoc \
< $MD_FILE_CONCAT \
--number-sections \
--toc \
--from=markdown \
--to=pdf \
--output=$OUTPUT_FILE
We are already giving away a very expensive document for free, figure out how to build it yourself :)
maintaining a genericized build pipeline isn't feasible with our limited time.
Pull requests welcome