StartupStarterPackage/SingeLLCOpAgreement
2020-10-16 23:40:28 -05:00
..
README.md moved over from previous repo, generalized some 2020-10-16 23:40:28 -05:00
TxLLC-ForProfit-MultiMember-ProfitInterestGrant-OpAgreement.md moved over from previous repo, generalized some 2020-10-16 23:40:28 -05:00

ForProfitOpAgreement

This is the operating agreement (in combination with items found in the CommonBoilerplate repo) used by :

  • Suborbital Systems Development Co LLC
  • RackRental Operating Company LLC
  • (and a basis for) Redwood

(you can find the redwood agreement in its own repo )

No warranties, express or implied. It's worked well for us, YMWV!!!

Also no build pipeline is provided. Our private repos have a build pipeline (bash script with 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. Don't open issues re build of the contract, they will be closed WONTFIX and your LDAP account disabled

#!/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