首页 > 编程 > Golang > 正文

基于go+vue实现的golang每日新闻数据浏览与检索平台(推荐)

2020-04-01 18:59:38
字体:
来源:转载
供稿:网友

gonews是基于 go+vue 实现的golang每日新闻浏览与检索平台

项目地址: Github

线上Demo:GoNews

数据来源: GoCN每日新闻

项目截图

golang,vue,go

部署

获取新闻数据

git clone https://github.com/gocn/news /data/news

获取源码

go get -u github.com/mikemintang/gonews

解析数据

nohup gonews -d /data/news > /data/log/gonews.log 2>&1

启动Api

nohup gonews -a api -p 8017 > /data/log/gonews.log 2>&1 &

前端部署

cd $GOPATH/src/github.com/mikemintang/gonews/webnpm installnpm run build

Nginx配置

server { listen 80; server_name gonews.idoubi.cc; index index.html index.htm index.php; root /data/go/src/mikemintang/gonews/web; location /api { rewrite ^.+api/?(.*)$ /$1 break; proxy_pass http://127.0.0.1:8017; }}

Shell脚本

#!/bin/shcd /data/newsgit pull origin masternohup gonews -d /data/news/ > /data/log/gonews.log 2>&1

 

定时任务

crontab -e*/10 * * * * /bin/sh /data/shell/cache_news.sh

用到的技术

golang包

github.com/go-redis/redisencoding/jsonflagnet/httpnet/urlstrconvsynccrypto/md5fmtioio/ioutilnet/urlospath/filepathregexpstrconvstringstime

总结

以上所述是小编给大家介绍的基于go+vue实现的golang每日新闻数据浏览与检索平台,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对VEVB武林网网站的支持!


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表