DEV Community

Cover image for Step-by-Step Guide to Deploying Admin Panel in Go using QOR
Yalantis
Yalantis

Posted on

Step-by-Step Guide to Deploying Admin Panel in Go using QOR

Full article: https://yalantis.com/blog/deploy-admin-panel-in-go-using-qor/

When building a platform-like application, you’ll need to create an admin panel to manage all app data. There’s a plethora of tools and approaches that allow developers to create admin panels without hassle. But such a variety of ready-made solutions creates difficulties with choosing the most effective one.

At Yalantis, we’ve tried different tools for deploying admin panels using Go, and our choice is the QOR package. In this article, we provide you with a step-by-step guide to quickly build a configurable, easy-to-use admin panel for your application.

QOR overview

QOR is a set of libraries written in Go that abstract common features needed for ecommerce systems, content management systems, and business applications.

It contains several modules that will come in handy for working with content management systems and ecommerce apps:

Admin. QOR admin panels comply with Google Material Design principles. It allows developers to build responsive admin dashboard page for Golang and works well on both desktop and mobile devices. It is a great tool for ecommerce and CMS development.

Roles. Not all users are supposed to have rights for managing data. The roles package helps to define roles and permissions for controlling access to specific data fields.

Inline Edit. This package allows developers to configure which content can be edited by which user role. It also provides convenient tools for defining and creating flexible, configurable widgets for frontend editing.

Worker. This package allows you to run batch processing and other time-consuming calculations in the background.

Internationalization (i18n) and localization (i10n). When you’re going to expand your business abroad, you may need to translate or localize your application into new languages. These tools allow you to quickly provide multi-language support for your app.

QOR has well-written official documentation, so implementing this tool won’t take much time and effort. In the example below, we’ll tell you how to quickly create an admin panel in Golang for ecommerce website.

Top comments (0)