TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What steps should we take before open sourcing our business?

2 pointsby jessepollakover 8 years ago
Hi HN! I&#x27;m one of the founders of Instant 2FA (instant2fa.com), an easy way for developers to add 2FA support to any website or app in 30 minutes.<p>We&#x27;re in private beta right now, but since it&#x27;s such a security-critical product, from the beginning we&#x27;ve planned on open sourcing the entire business. With a little more than a month until we plan to launch and do that, we&#x27;re starting to get all of our ducks in a line and are hoping the HN community can help us avoid making common mistakes!<p>My question for the HN community is this: if you run an open source business, what issues have you run into that we might? Are there any we should definitely do before we open source everything?

1 comment

warpover 8 years ago
Presumably you want your code to be open source to allow others to contribute.<p>It is important to pick the right license for your project, because it will change which contributors you will attract (and what your competitors can do with your code). Using a popular well-known license will make it easier for contributors, because they (or their employer) don&#x27;t have to worry about understanding a license they&#x27;ve never heard of.<p>So preferably pick something like GPLv2 (use the &quot;or any later version&quot; wording for max compatibility), Apache v2 or MIT.<p>If possible, don&#x27;t use a CLA, you don&#x27;t need it [1] and it&#x27;s just a bunch of extra paperwork for you and your contributors.<p>[1] <a href="https:&#x2F;&#x2F;sfconservancy.org&#x2F;blog&#x2F;2014&#x2F;jun&#x2F;09&#x2F;do-not-need-cla&#x2F;" rel="nofollow">https:&#x2F;&#x2F;sfconservancy.org&#x2F;blog&#x2F;2014&#x2F;jun&#x2F;09&#x2F;do-not-need-cla&#x2F;</a>