mirror of
https://gitee.com/goploy/goploy.git
synced 2024-11-29 18:57:59 +08:00
A 1.4.7
This commit is contained in:
parent
75d88272c1
commit
6ee5270559
@ -58,6 +58,7 @@ Use Goploy to automate your development workflow, so you can focus on work that
|
||||
Goploy is commonly used for:
|
||||
|
||||
- Building projects
|
||||
- Support git svn ftp sftp
|
||||
- Deployment
|
||||
- Monitor app and server
|
||||
- Second cron
|
||||
|
@ -57,6 +57,7 @@ Goploy 用于:
|
||||
|
||||
- 构建项目
|
||||
- 发布项目
|
||||
- 支持git、svn、ftp、sftp
|
||||
- 监控应用
|
||||
- 服务器性能
|
||||
- 秒级定时任务
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Import sql manually https://github.com/zhenorzz/goploy/blob/master/model/sql/goploy.sql
|
||||
FROM alpine
|
||||
LABEL maintainer="zhenorzz@gmail.com"
|
||||
ARG GOPLOY_VER=v1.4.6
|
||||
ARG GOPLOY_VER=v1.4.7
|
||||
ENV GOPLOY_VER=${GOPLOY_VER}
|
||||
|
||||
ENV MYSQL_PORT=3306
|
||||
|
2
main.go
2
main.go
@ -38,7 +38,7 @@ var (
|
||||
s string
|
||||
)
|
||||
|
||||
const appVersion = "1.4.6"
|
||||
const appVersion = "1.4.7"
|
||||
|
||||
func init() {
|
||||
flag.StringVar(&core.AssetDir, "asset-dir", "", "default: ./")
|
||||
|
@ -317,5 +317,5 @@ CREATE TABLE IF NOT EXISTS `terminal_log` (
|
||||
INSERT IGNORE INTO `user`(`id`, `account`, `password`, `name`, `contact`, `state`, `super_manager`) VALUES (1, 'admin', '$2a$10$89ZJ2xeJj35GOw11Qiucr.phaEZP4.kBX6aKTs7oWFp1xcGBBgijm', '超管', '', 1, 1);
|
||||
INSERT IGNORE INTO `namespace`(`id`, `name`) VALUES (1, 'goploy');
|
||||
INSERT IGNORE INTO `namespace_user`(`id`, `namespace_id`, `user_id`, `role`) VALUES (1, 1, 1, 'admin');
|
||||
INSERT IGNORE INTO `system_config` (`id`, `key`, `value`) VALUES (1, 'version', '1.4.6');
|
||||
INSERT IGNORE INTO `system_config` (`id`, `key`, `value`) VALUES (1, 'version', '1.4.7');
|
||||
|
||||
|
@ -70,12 +70,6 @@ export const constantRoutes: RouteRecordRaw[] = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: '/server/record',
|
||||
name: 'record',
|
||||
component: () => import('@/views/server/record/index.vue'),
|
||||
meta: { hidden: true },
|
||||
},
|
||||
]
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user