QOR is a set of libraries written in Go that abstracts common features needed for business applications, CMSs, and E-commerce systems.
This is actually the third version of QOR: 1 and 2 were written in Ruby and used internally at The Plant. We decided to rewrite QOR in Go and open source it - which has happened as of June 2015.
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.
-
Service - 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 http://demo.getqor.com/admin
- Source Code of Live Demo https://github.com/qor/qor-example
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
Released under the MIT License.