Skip to content

Wynnfan/casbin-dashboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

casbin-dashboard

Casbin-dashboard is the official web UI (admin portal) for Casbin models and policies. A security administrator can use it to view & edit Casbin models and policy rules.

Demo

https://dashboard.casbin.org/

Architecture

Casbin-dashboard contains 2 parts:

Name Description Language Source code
Frontend Web frontend UI for Casbin-dashboard Javascript + React + Ant Design https://github.com/casbin/casbin-dashboard/tree/master/web
Backend RESTful API backend for Casbin-dashboard Golang + Beego + MySQL https://github.com/casbin/casbin-dashboard

Installation

  • Get the code:
go get github.com/casbin/casbin-dashboard
  • Setup database:

Casbin-dashboard will store its metadata in a MySQL database named: casbin_metadata, will create it if not existed. The DB connection string can be specified at: https://github.com/casbin/casbin-dashboard/blob/master/conf/app.conf

dataSourceName = root:123@tcp(localhost:3306)/

Casbin-dashboard uses XORM to connect to DB, so all DBs supported by XORM can also be used.

  • Run backend (in port 8000):
go run main.go
  • Run frontend (in the same machine's port 3030):
cd web
npm install
npm start
  • Open browser:

http://localhost:3030/

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published