基于Golang语言和MySQL实现的WEB在线客服系统 主要技术栈 gin + jwt-go + websocket + go.uuid + gorm + cobra
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
taoshihan 9988222db0
去掉cdn换成本地资源
6 months ago
cmd 优化代码 2 years ago
common 客服终端只允许一个在线 2 years ago
config 分页消息记录接口 1 year ago
controller 列出每日访客接待情况统计 11 months ago
middleware 去除授权以及样式调整 1 year ago
models 列出每日访客接待情况统计 11 months ago
router 列出每日访客接待情况统计 11 months ago
static 去掉cdn换成本地资源 6 months ago
tmpl 列出每日访客接待情况统计 11 months ago
tools 列出每日访客接待情况统计 11 months ago
ws 优化代码 2 years ago
.gitignore 提交忽略文件 4 years ago
Dockerfile 频限类并发安全的map 3 years ago
LICENSE 增加开源协议 3 years ago
go-fly.go 优化入口代码 4 years ago
go.mod 优化代码 2 years ago
go.sum 优化代码 2 years ago
import.sql 修改资料功能 2 years ago
readme.md 弹窗模式介绍 11 months ago
readme_en.md 精简封装部分代码 1 year ago
start.bat 优化配置代码 3 years ago
stop.bat 增加停止脚本 3 years ago
stop.sh 增加停止脚本 3 years ago

readme_en.md

GOFLY [V1KF] GOFLY LIVE CHAT FOR CUSTOMER SUPPORT SERVICE

中文 | English | The official website

Please note that this project is for personal learning and testing only, and is prohibited for all online commercial use and illegal use!

It appears that you are providing information about purchasing a paid version of the software and receiving an installation package and authorization.

The main technology stack

gin + jwt-go + websocket + go.uuid + gorm + cobra + VueJS + ElementUI + MySQL

Preview

Image text

Image text

Image text

To install and use:

1. Install and run MySQL >=5.5, and create the gofly database.

create database gofly charset utf8;

edit config/mysql.json

{
	"Server":"127.0.0.1",
	"Port":"3306",
	"Database":"gofly",
	"Username":"go-fly",
	"Password":"go-fly"
}

2. Run the source code:

  1. Go module:

    go env -w GO111MODULE=on

    go env -w GOPROXY=https://goproxy.cn,direct

    git clone https://github.com/taoshihan1991/go-fly.git

    go run go-fly.go install

    go run go-fly.go server

  2. Source code packaging: go build go-fly.go, which will generate the go-fly executable file.

  3. Import the database (will delete the table and clear the data): ./go-fly install

  4. Binary file execution:

    linux: ./go-fly server [optional -p 8082 -d]

    windows: go-fly.exe server [optional -p 8082 -d]

  5. Close the program: ./go-fly stop

    For Linux, use the ps and kill commands to kill the process:

    ps -ef|grep go-fly

    kill process parent process id; kill process child process id

    or killall go-fly

Usage

The server installation is complete and the service is running, and the client can be accessed through the browser.

The default port is 8081. If you use the -p parameter to specify the port, you can access it through the browser http://127.0.0.1:port.

The default user name and password are kefu2 and 123

Nginx

server {
       listen 443 ssl http2;
        ssl on;
        ssl_certificate   conf.d/cert/4263285_gofly.sopans.com.pem;
        ssl_certificate_key  conf.d/cert/4263285_gofly.sopans.com.key;
        ssl_session_timeout 5m;
        ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        ssl_prefer_server_ciphers on;
        #listen          80; 
        server_name  gofly.sopans.com;
        access_log  /var/log/nginx/gofly.sopans.com.access.log  main;
        location /static {
                root /var/www/html/go-fly;//自己的部署路径,静态文件直接nginx响应
        }
        location / {
                proxy_pass http://127.0.0.1:8081;
                    proxy_http_version 1.1;
                    proxy_set_header X-Real-IP $remote_addr;
                    proxy_set_header Upgrade $http_upgrade;
                    proxy_set_header Connection "upgrade";
                    proxy_set_header Origin "";
        }
}
server{
       listen 80;
        server_name  gofly.sopans.com;
        access_log  /var/log/nginx/gofly.sopans.com.access.log  main;
        location /static {
                root /var/www/html/go-fly;//自己的部署路径,静态文件直接nginx响应
        }        
        location / {
                proxy_pass http://127.0.0.1:8081;
                    proxy_http_version 1.1;
                    proxy_set_header X-Real-IP $remote_addr;
                    proxy_set_header Upgrade $http_upgrade;
                    proxy_set_header Connection "upgrade";
                    proxy_set_header Origin "";
        }
}

If you encounter a pop-up window requiring authentication after logging into the backend, please go to the official website to register an account and bind your phone. Entering your bound phone number + your own password will allow you to pass the authentication. If you do not have a Chinese phone number, please contact me on the official website to obtain a test phone number and password.

This project is a complete code with full functionality, but it is still only for personal demonstration and testing and does not include online use.

All commercial activities are prohibited. When using this software, please comply with local laws and regulations. Any illegal use is at your own risk.