All Projects → jipiboily → Monologue

jipiboily / Monologue

Licence: mit
Monologue is a basic blogging engine. It is a Rails mountable engine you can mount in your already existing Rails app, or a in a new one! Enjoy.

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Monologue

Lines Engine
Lines is a customizable blog framework for Rails. It aims at making publishing simple and beautiful.
Stars: ✭ 191 (-60.62%)
Mutual labels:  blog, blog-engine
Lazyblorg
Blogging with Org-mode for very lazy people
Stars: ✭ 226 (-53.4%)
Mutual labels:  blog, blog-engine
Blogetc
Easily add a full Laravel blog (with built in admin panel and public views) to your laravel project with this simple package.
Stars: ✭ 198 (-59.18%)
Mutual labels:  blog, blog-engine
Serendipity
A PHP blog software
Stars: ✭ 151 (-68.87%)
Mutual labels:  blog, blog-engine
Dingo
Blog engine written in Go (Looking for contributors)
Stars: ✭ 282 (-41.86%)
Mutual labels:  blog, blog-engine
Notablog
Generate a minimalistic blog from a Notion table. [WIP]
Stars: ✭ 177 (-63.51%)
Mutual labels:  blog, blog-engine
Solo
🎸 一款小而美的博客系统,专为程序员设计。
Stars: ✭ 13,245 (+2630.93%)
Mutual labels:  blog, blog-engine
Oblog
An Auto Rendering 🔽 Blogging System Based on MarkDown & Vue.js | 自动渲染装载 MarkDown 内容的博客系统
Stars: ✭ 133 (-72.58%)
Mutual labels:  blog, blog-engine
Verless
A simple and lightweight Static Site Generator.
Stars: ✭ 276 (-43.09%)
Mutual labels:  blog, blog-engine
Vertigo
Blog engine in Go (golang)
Stars: ✭ 266 (-45.15%)
Mutual labels:  blog, blog-engine
Flog
A Simple Blog Powered by Flask
Stars: ✭ 150 (-69.07%)
Mutual labels:  blog, blog-engine
Blog Core
Modular blog using Blazor with clean domain-driven design patterns
Stars: ✭ 345 (-28.87%)
Mutual labels:  blog, blog-engine
Blog
My Blog & Blog System
Stars: ✭ 148 (-69.48%)
Mutual labels:  blog, blog-engine
Elefant
Elefant, the refreshingly simple PHP CMS and web framework.
Stars: ✭ 188 (-61.24%)
Mutual labels:  blog, blog-engine
Sciblog
A blog made with django designed like a scientific paper written in Latex.
Stars: ✭ 145 (-70.1%)
Mutual labels:  blog, blog-engine
Slimcms
SlimCMS - lightweight CMS based on slim 3 framework
Stars: ✭ 201 (-58.56%)
Mutual labels:  blog, blog-engine
Sunengine
SunEngine – site engine with blog, forum and articles sections features support.
Stars: ✭ 130 (-73.2%)
Mutual labels:  blog, blog-engine
Dropplets
Welcome to an easier way to blog - A minimalist markdown blogging platform.
Stars: ✭ 1,616 (+233.2%)
Mutual labels:  blog, blog-engine
Dasblog Core
The original DasBlog reimagined with ASP.NET Core
Stars: ✭ 252 (-48.04%)
Mutual labels:  blog, blog-engine
Middleman Blog
Middleman : Blog Engine Extension
Stars: ✭ 317 (-34.64%)
Mutual labels:  blog, blog-engine

Monologue

Gem Version Build Status Code Climate Coverage Status

THIS README IS FOR THE MASTER BRANCH AND REFLECTS THE WORK CURRENTLY EXISTING ON THE MASTER BRANCH. IF YOU ARE WISHING TO USE A NON-MASTER BRANCH OF MONOLOGUE, PLEASE CONSULT THAT BRANCH'S README AND NOT THIS ONE.

NOT MAINTAINED ANYMORE: This project hasn't been maintained for a while. It's pretty basic and should still work. Chances are issues and PRs might not receive the attention they deserve, at least, not quickly, if at all.

Monologue is a basic, mountable blogging engine in Rails built to be easily mounted in an already existing Rails app, but it can also be used alone.

Version

This README is for the latest version of Monologue (0-5-stable being the latest stable version).

Upgrade and changes

To learn how to upgrade, see UPGRADE.md file. If you want to learn what changed since the last versions, see CHANGELOG.md.

Questions? Problems? Documentation?

Some features

missing features

Installation

1. Add the gem to your Gemfile.

gem 'monologue'

And run bundle install to fetch the gem and update your 'Gemfile.lock'.

2. Route to Monologue

Add this to your route file (config/routes.rb)

# This line mounts Monologue's routes at the root of your application.
# This means, any requests to URLs such as /my-post, will go to Monologue::PostsController.
# If you would like to change where this engine is mounted, simply change the :at option to something different.
#
# We ask that you don't use the :as option here, as Monologue relies on it being the default of "monologue"
mount Monologue::Engine, at: '/' # or whatever path, be it "/blog" or "/monologue"

For example, if you decide to mount it at /blog, the admin section will be available at /blog/monologue. Here we decide to use monologue as default route mounting it at /, it means that the admin section will directly be available at /monologue.

3. Migrate Monologue's database tables

Run these commands:

  1. $bin/rake monologue:install:migrations
  2. $bin/rake db:create (only if this is a new project)
  3. $bin/rake db:migrate

4. Create a user

Open your development console with bin/rails c, then:

Monologue::User.create(name: "monologue", email:"[email protected]", password:"my-password", password_confirmation: "my-password")

5. Configure Monologue.

This is all done in an initializer file, typically config/initializers/monologue.rb. More on this in the Wiki - Configuration.

6. Ready

Start your server and go to http://localhost:3000/monologue to log in the admin section.

Note to users

Monologue is using its own tables. If you want to use your own tables with monologue (for example the User table) this might help you to monkey patch.

Customization

See the Wiki - Customizations.

Copy views

copy views like devise rails g monologue:views or use scope: rails g monologue:views blog

Requirements

  • Rails 4.2.1 +
  • Database: MySQL & Postgres are supported but other databases might work too.

Authors

Contributing

In the spirit of free software, everyone is encouraged to help improve this project.

Here are some ways you can contribute:

  • by using prerelease versions
  • by reporting bugs
  • by suggesting new features
  • by writing or editing documentation
  • by writing specifications
  • by writing code (no patch is too small: fix typos, add comments, clean up inconsistent whitespace)
  • by refactoring code
  • by resolving issues
  • by reviewing patches

Starting point:

  • Fork the repo
  • Clone your repo
  • Run bundle install
  • Run bundle exec rake db:migrate
  • Run bundle exec rake db:setup
  • Make your changes
  • Ensure specs pass by running bundle exec rspec spec
  • Submit your pull request

You will need to install this before running the test suite:

Thanks to

Zurb for the "social foundicons".

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].