TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How to open-source my failed startup?

8 点作者 gabrielr超过 10 年前
I was cofounder of a startup that lasted about 18 months. We were funded entirely by friends &amp; family. Now that the business is dead and we&#x27;ve moved on to other jobs, we&#x27;d like to release some, maybe all, of our proprietary code (currently in GitHub private repos) under a free &#x2F; open-source license.<p>Who has done this before? What should we consider?<p>Legally, I think we&#x27;re ok: Everyone involved is enthusiastic about open-sourcing and we&#x27;ve been careful with IP assignment and other paperwork.<p>I&#x27;m more interested in the technical and social issues: attribution, reputation, how to best leave it all for posterity.<p>How much should we clean up the codebase first? Should I re-write the git history? Just release a single snapshot?

6 条评论

radq超过 10 年前
We open-sourced our startup (<a href="https://github.com/hummingbird-me/hummingbird" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;hummingbird-me&#x2F;hummingbird</a>) and I think it was fairly successful.<p>Personally I feel that the git history is useful so I would prefer not to release just a snapshot. Would be better to rewrite history to remove anything that should not be there.<p>We ended up using the Apache v2 license, mainly because it requires granting copyright and patent licenses from contributors without getting them to sign a CLA.<p>In terms of having a successful open source project the most critical thing is to attract contributors. Some easy things you can do towards this end:<p>1. Simplify your installation process. I found that for Hummingbird the biggest barrier to new contributors right now is our complicated installation, and I am working on getting something working using Docker&#x2F;Fig.<p>2. Identify some easy potential contributions and add them to your issue tracker. When I want to contribute to a project the first thing I do is look for easy issues, and a lot of projects make this easy by specifically tagging issues that would be easy for new contributors to tackle.<p>3. Like arielm said, documentation is very important. Make sure you have a well written README, CONTRIBUTING etc.
mtmail超过 10 年前
If I faced such a codebase (and I have just recently) then I&#x27;m interested in (a) installation instructions, pre-requisites, possibly data dumps (b) notes what a version 2 would look like, basically a brain-dump what you think could be improved or shortcomings. Honesty (engineer to engineer) works best. I never had to check the git history for debugging so a snapshot (or depth=1 export) would have been enough.<p>If you own all rights to the code base I think you can ask for attribution, e.g. &quot;if you use this in a public facing projects you need to attribute &lt;company name, url&gt; on your about-us page.&quot; Kind of a one-sentence licence. Some people will ignore it. I would add a &quot;version 1 written by &lt;company&gt; name&quot; as a comment to the beginning of every file just to show where the code originated.
arielm超过 10 年前
Having only been tangentially involved in open sourcing one project (pixelwave.org) I probably can&#x27;t give you everything, but I do have a few nuggets that might help:<p>1. Documentation: a very important part of any project is its documentation. A detailed getting started guide, installation&#x2F;setup instructions, and api documentation are what gets developers interested. If they don&#x27;t exist, or aren&#x27;t good enough, the project wouldn&#x27;t gain any traction.<p>2. Licensing - there are many types of open source licenses and it&#x27;s important that you select the right one. Some require attribution and some don&#x27;t. This is one area I leave up to the experts, but know is important.
drewvolpe超过 10 年前
There was a good HN post a few weeks ago from a founder who started to open source his failed startup and decided against it after he realized all of the work required:<p><a href="https://news.ycombinator.com/item?id=8641867" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=8641867</a>
yzzxy超过 10 年前
Probably don&#x27;t publish your old git repo. If you have multiple branches, add them to a new repo manually. You never know what could be in your old code.
gabrielr超过 10 年前
Thanks everyone -- good things to think about.