A simple and efficient permission management system developed based on Go-Zero + Vue3 + TypeScript + Element-Plus (with source code)

online experience

Online experience address: http://arkadmin.si-yee.com

account password Remark
demo 123456 demo account
  • If you want to experience more complete project functions, you can download the project yourself and run the experience or use docker-compose
  • Those who need to open the genuine GoLand can contact me, 56 yuan a year, the genuine license is activated, and the validity period can be checked on the official website. If you need it, add me on WeChat: poxiaozhiai6, Remarks: 915.

docker-compose

git clone https://github.com/arklnk/ark-admin-zero.git
cd ark-admin-zero
docker-compose up -d

Login address: http://127.0.0.1

account password Remark
arklnk 123456 super administrator
demo 123456 demo account

login

development mode

Environmental requirements

clone project

git clone https://github.com/arklnk/ark-admin-zero.git
cd ark-admin-zero

download dependencies

go mod tidy

Hot Start

go get github.com/cortesi/modd/cmd/modd

Edit the hotstart configuration (modd.conf in the project root directory)

In the window environment

#core
app/core/**/*.* {
    prep: go build -o data/service/core-api.exe -v app/core/cmd/api/core.go
    daemon: data/service/core-api.exe -f app/core/cmd/api/etc/core-api.yaml
}

In mac and linux environments

#core
app/core/**/*.* {
    prep: go build -o data/service/core-api -v app/core/cmd/api/core.go
    daemon: data/service/core-api -f app/core/cmd/api/etc/core-api.yaml
}

Note: modd open source address https://github.com/cortesi/modd

Run (the development environment needs to use redis and mysql, so please execute docker-compose up -d to start the container)

modd

If the following information is output, the startup is successful

15:17:03: prep: go build -o data/service/core-api.exe -v app/core/cmd/api/core.go
>> done (2.2430897s)
15:17:06: daemon: data/service/core-api.exe -f app/core/cmd/api/etc/core-api.yaml
>> starting...
Starting server at 0.0.0.0:7001...


Official documents and source code

Official documentation: https://docs.arklnk.com

Front-end source code: https://github.com/arklnk/ark-admin-vuenext

Backend source code: https://github.com/arklnk/ark-admin-zero

Welcome to like

If the project is helpful, you can give it a thumbs up and support it.

browser support

Modern browsers and Internet Explorer 10+.

IE / Edge IE / Edge Firefox Firefox Chrome Chrome Safari Safari
IE10, IE11, Edge last 2 versions last 2 versions last 2 versions

Guess you like

Origin blog.csdn.net/qq_38140936/article/details/126868386