Git Product home page Git Product logo

groonga-admin's Introduction

Groonga Admin

Groonga Admin is a Web UI to administrate Groonga. Groonga Admin is designed for light Groonga users. It means that users who doesn't know Groonga details can use Groonga Admin.

Groonga Admin is based on client site technologies such as HTML, JavaScript and CSS. So you don't need to install server process. You just publish Groonga Admin by HTTP server provided by Groonga.

Install

Download the latest archive from http://packages.groonga.org/source/groonga-admin/ .

Extract the archive. Then you get groonga-X.Y.Z/ directory and find groonga-X.Y.Z/html/ directory.

Mount the html/ directory in your Groonga HTTP server.

For groonga-server-http, add the following line to your /etc/groonga/groonga.conf:

admin-html-path = /PATH/TO/groonga-admin-X.Y.Z/html

Then restart your groonga-server-http and access to http://localhost:10041/ .

For groonga-httpd, use the following configuration in your groonga-httpd.conf:

location / {
  root /PATH/TO/groonga-admin-X.Y.Z/html;
  index index.html;
}

Then restart your groonga-httpd and access to http://localhost:10041/ .

For developers

Install

Install tools:

% sudo npm install -g -y yo generator-angular grunt-cli bower
% sudo gem install compass

Clone repository:

% git clone [email protected]:groonga/groonga-admin.git
% cd groonga-admin
% npm install
% bower install

Run Groonga HTTP server. There are some ways to run Groonga HTTP server.

  • Use package
  • Run from command line
  • Use Groonga HTTP server run on other host

Use package:

% sudo apt install -y groonga-server-http

Run from command line:

% groonga --protocol http -s /path/to/database

Use Groonga HTTP server run on other host: Do nothing. You have a work on running Groonga Admin.

Run Groonga Admin:

% grunt serve

If you want to use Groonga HTTP server run on groonga.example.com, run Groonga Admin as by the following command line:

% GROONGA_HOST=groonga.example.com grunt serve

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.