qor is a free, open source content management systems (cms) project written in Go and released under MIT. It has 5,343 GitHub stars, 686 forks and 61 open issues, and was last pushed 17 days ago. On this registry it ranks #16 of 47 tracked projects in Content Management Systems (CMS), with 5 head-to-head comparisons available.

What is qor?

What it is

QOR is a set of libraries written in Go that abstracts the common features needed for business applications, content management systems, and e-commerce systems. It lives in the Go ecosystem and is published under the MIT license. The project is a complete rewrite in Go of the original QOR, which was a proprietary framework written in Ruby on Rails and used internally at The Plant, and version 1.0 is the first release to be open sourced.

The concrete problem it solves is the repeated plumbing work that appears in nearly every commerce or CMS build: an administrative interface for managing data, a review stage before content goes live, order and payment states, asset storage, scheduled batch jobs, import and export of business data, translations, per-locale models, and access control. Rather than leaving each team to write those pieces again, QOR collects them as separate modules that a developer wires into a Go application. The README is explicit that QOR is not a boxed turnkey solution, so proper coding skills are required to use it.

Key capabilities

  • Admin generates an admin interface and a RESTful API for managing application data, and forms the core of the system.
  • Publish provides a staging environment where content changes are reviewed before being pushed to the live system.
  • Transition is a configurable state machine for defining states, events such as paying an order, and validation constraints on state transitions.
  • Media Library handles asset management with support for several cloud storage backends and publishing through a CDN.
  • Worker provides batch processing in the form of a process scheduler.
  • Exchange moves data to and from other business applications using CSV or Excel files.
  • Internationalization and Localization cover translation management with inline editing, plus DB-backed models handled per locale with locale-based querying, while Roles supplies access control.

Who uses it and how

  • Teams building custom e-commerce or CMS backends in Go, where the admin module supplies the management interface and RESTful API over their own models.
  • Editorial workflows that use Publish so that all content changes are staged and reviewed before reaching the live site.
  • Order and payment flows modeled with
project readme (upstream, from github) — read inline

QOR

English Chat Room: Join the chat at https://gitter.im/qor/qor

中文聊天室: 加入中国Qor聊天室 https://gitter.im/qor/qor/china

Build Status

For security issues, please send us an email to [email protected] and give us time to respond BEFORE posting as an issue or reporting on public forums.

What is QOR?

QOR is a set of libraries written in Go that abstracts common features needed for business applications, CMSs, and E-commerce systems.

This is a complete rewrite in Go, of the original QOR, which was a proprietary framework written in Ruby on Rails and used internally at The Plant. QOR 1.0 is the first version to be open sourced and distributed under the MIT license.

What QOR is not

QOR is not a "boxed turnkey solution". You need proper coding skills to use it. It's designed to make the lives of developers easier when building complex EC systems, not providing you one out of the box.

Documentation

The modules

  • Admin - The core part of QOR system, will generate an admin interface and RESTFul API for you to manage your data

  • Publish - Providing a staging environment for all content changes to be reviewed before being published to the live system

  • Transition - A configurable State Machine: define states, events (eg. pay order), and validation constraints for state transitions

  • Media Library - Asset Management with support for several cloud storage backends and publishing via a CDN

  • Worker (Batch processing) - A process scheduler

  • Exchange - Data exchange with other business applications using CSV or Excel data

  • Internationalization (i18n) - Managing and (inline) editing of translations

  • Localization (l10n) - Manage DB-backed models on per-locale basis, with support for defining/editing localizable attributes, and locale-based querying

  • Roles - Access Control

  • And more https://github.com/qor

Live DEMO

Frontend Development

Requires Node.js and Gulp for building frontend files

npm install && npm install -g gulp
  • Watch SCSS/JavaScript changes: gulp
  • Build Release files: gulp release

License

Released under the MIT License.

Frequently asked questions

Is qor free to use?

qor is open source under the MIT licence. There is no licence fee and no seat count — you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does qor do?

QOR is a set of libraries written in Go that abstracts common features needed for business applications, CMSs, and E-commerce systems.

What is qor written in?

qor is primarily written in Go. Its source is publicly available at https://github.com/qor/qor, and it has 5,343 GitHub stars.