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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Simple Blogging via Git Push

1 点作者 Johngibb将近 13 年前
The Idea --------<p>Simple blogging engine using Git to author and version your blog posts. Create a new text file (markdown format) for a new post, make edits to it using commits, and push to see it live.<p>The Details -----------<p>This would be implemented as a service that received a Git push in order to deploy your new data.<p>Upon receiving a deploy via "git push", a static blog generator (Jekyll?) would run transforming your changes into a static website, deployed to a web server or potentially an S3 bucket.<p>Viability / Interest? ---------------------<p>* If this existed today, would you use it? * Does it exist, and I'm just unaware of the service? * Any advice / inputs on the technical implementation?<p>I know it's Yet Another Blogging Engine, but since starting a full-time job I haven't shipped a side project since http://rewordio.us last year - I'm looking for something I can develop quickly, that could be useful to people, and potentially even grow over time.<p>Consider this a request for feedback / proposal. Maybe I should have started a Kickstarter project... :)

2 条评论

riccardoforina将近 13 年前
I can suggest you my howto configure Flask-FlatPages with OpenShift to achieve (almost) exactly what you want: <a href="http://www.codingnot.es/recycling-part-2/" rel="nofollow">http://www.codingnot.es/recycling-part-2/</a><p>The static generation part is not there, but there is Frozen-Flask for that: <a href="http://packages.python.org/Frozen-Flask/" rel="nofollow">http://packages.python.org/Frozen-Flask/</a>
Isammoc将近 13 年前
Like github pages ? <a href="http://pages.github.com/" rel="nofollow">http://pages.github.com/</a>