All Projects → snehesht → Blog

snehesht / Blog

Minimalist database less blog engine

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Blog

Plume
Federated blogging application, thanks to ActivityPub (now on https://git.joinplu.me/ — this is just a mirror)
Stars: ✭ 1,615 (+828.16%)
Mutual labels:  blog-engine
Dropplets
Welcome to an easier way to blog - A minimalist markdown blogging platform.
Stars: ✭ 1,616 (+828.74%)
Mutual labels:  blog-engine
Publify
A self hosted Web publishing platform on Rails.
Stars: ✭ 1,777 (+921.26%)
Mutual labels:  blog-engine
Sio.core
✔ [ SIOC ] Swastika I/O Core is an all in one platform (e.g CMS, eCommerce, Forum, Q&A, CRM...) ASP.NET Core / Dotnet Core System based on SIOH Framework.
Stars: ✭ 121 (-30.46%)
Mutual labels:  blog-engine
Blogotext
A little more than a lightweight SQLite Blog-Engine.
Stars: ✭ 129 (-25.86%)
Mutual labels:  blog-engine
Trofaf
Super simple live static blog generator in Go. Vraiment trofaf.
Stars: ✭ 132 (-24.14%)
Mutual labels:  blog-engine
Nabo
Nabo (納博) - dead simple blog engine
Stars: ✭ 103 (-40.8%)
Mutual labels:  blog-engine
Serendipity
A PHP blog software
Stars: ✭ 151 (-13.22%)
Mutual labels:  blog-engine
Sunengine
SunEngine – site engine with blog, forum and articles sections features support.
Stars: ✭ 130 (-25.29%)
Mutual labels:  blog-engine
Sciblog
A blog made with django designed like a scientific paper written in Latex.
Stars: ✭ 145 (-16.67%)
Mutual labels:  blog-engine
Nim websitecreator
Nim fullstack website framework - deploy a website within minutes
Stars: ✭ 124 (-28.74%)
Mutual labels:  blog-engine
Infinitas
Infinitas is an open source content management framework that was developed using the CakePHP framework (v2.x). Amongst other things, its a blog, cms, newsletter emailing system and on-line shopping cart.
Stars: ✭ 126 (-27.59%)
Mutual labels:  blog-engine
Oblog
An Auto Rendering 🔽 Blogging System Based on MarkDown & Vue.js | 自动渲染装载 MarkDown 内容的博客系统
Stars: ✭ 133 (-23.56%)
Mutual labels:  blog-engine
Aws Lambda Blog
AWS Lambda serverless blogging platform
Stars: ✭ 119 (-31.61%)
Mutual labels:  blog-engine
Blog
My Blog & Blog System
Stars: ✭ 148 (-14.94%)
Mutual labels:  blog-engine
Jekyll
🌐 Jekyll is a blog-aware static site generator in Ruby
Stars: ✭ 43,803 (+25074.14%)
Mutual labels:  blog-engine
Chyrp Lite
An ultra-lightweight blogging engine, written in PHP.
Stars: ✭ 131 (-24.71%)
Mutual labels:  blog-engine
Netcorecms
NetCoreCMS is a modular theme supported Content Management System developed using ASP.Net Core 2.0 MVC. Which is also usable as web application framework. This project is still under development. Please do not use before it's first release.
Stars: ✭ 165 (-5.17%)
Mutual labels:  blog-engine
Flog
A Simple Blog Powered by Flask
Stars: ✭ 150 (-13.79%)
Mutual labels:  blog-engine
Gatsby Theme Novela
Welcome to Novela, the simplest way to start publishing with Gatsby.
Stars: ✭ 1,647 (+846.55%)
Mutual labels:  blog-engine

Minimalist Blog Engine snehesh.me

Discuss on Hacker News

TL;DR

Publish a blog post with git push

My motivation to build this blog engine was based on 3 factors.

  • Write on any device ( i.e Mobile, Laptop) using CLI or text editor
  • Never worry about database backups and keep track of all changes I made on an article
  • Make publishing simple without touching the server

This project uses git to track all changes made on an article, as all the writing is done in markdown format, I can write posts on multiple devices ( CLI (Termux) on Android, VIM or Sublime on Arch ) switching back and forth. Finally I can publish those writings by adding metadata to the metadata.json file. In other words the posts are visible on blog only when they are enabled in metadata.json.

ToDo

  • Multiprocess support for DataStore()
  • Support for .rst format
  • Social Buttons ( HN, Twitter )
  • Filtered views based on Tags

Usage

docker pull snehesh/blogengine:latest
	Environmental Variables
		POSTS_GIT_REPO
		POSTS_GIT_REPO_SECRET
		docker run -d \
		-e POSTS_GIT_REPO="https://github.com/snehesht/BLOGPOSTS_REPO" \
		-e POSTS_GIT_REPO_SECRET="SECRET HERE" \
		-p 5000:5000 \
		--name be1 snehesh/blogengine:latest

Stack

  • Python 3
  • Flask
  • Markdown
  • Github Webhook

License

The MIT License (MIT)

Copyright (c) 2016 Snehesh Thalapaneni

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].