Giter Site home page Giter Site logo

ysma1987 / redismanager Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lukiya/redismanager

0.0 1.0 0.0 33.54 MB

a cross-platform redis gui client (or server)

License: GNU Affero General Public License v3.0

Go 47.69% Dockerfile 0.06% PowerShell 2.92% TypeScript 48.96% Less 0.37%

redismanager's Introduction

Redis Manager

Intro

Redis Manager is an open source, cross-platform and completely free redis management GUI. Its server host side is writen by GO, and GUI side is writen by react + umi + ant design.

Configuration

There are 2 setting files: "configs.json" and "Servers.json"

configs.json

It stored some basic configuration for RedisManager, here's an example and instructions for it:

{
    "Log": {
        "Level": "warn"       // log level [debug,info,warn,error]
    },
    "ListenAddr": ":16379"    // Listen address and port
}
Servers.json

It stored all redis servers infomation you want to manage.

Please beware, this file is unencrypted. Make sure it can only be accessed by yourself.

Quick start

Use excutable files

Visit https://github.com/Lukiya/redismanager/releases, download executable file

Use docker

docker run --name redismanager -d --restart always --net host lukiya/redismanager

or

docker run --name redismanager -d --restart always -p 16379:16379 lukiya/redismanager

if you want to backup or restore Servers.json, use below command:

docker cp redismanager:/app/Servers.json /data/redismanager/Servers.json
docker cp /data/redismanager/Servers.json redismanager:/app/Servers.json

or just use volume map to save Servers.json outside of docker instance like below:

docker run --name redismanager -d --restart always -p 16379:16379 -v /data/redismanager/Servers.json:/app/Servers.json lukiya/redismanager

Please beware, this file is unencrypted. Make sure it can only be accessed by yourself.

Notes

  • For Mac, make sure you allow it in settings ("Security & Privacy" -> "General" -> "Allow apps downloaded from").

You are all set

Run excutable file or run an docker image, then open a broswer, and access http://localhost:16379 (or http://RemoteIP:Port) to start using it.

Source code

DEV environment

GUI DEV documents

Build

There are 6 powershell scripts for building source code.

  • build-js.ps1: build js file and generate bindata
  • build-linux.ps1: build linux executable file.
  • build-mac.ps1: build mac executable file.
  • build-win.ps1: build windows executable file.
  • build-docker.ps1: build docker image file.
  • build.ps1: build all platform executable file including docker image.

After built, all binary files will be saved under dist folder.

redismanager's People

Contributors

lukiya avatar

Watchers

James Cloos avatar

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.