This commit is contained in:
zhenorzz 2022-03-10 19:31:30 +08:00
parent 75d88272c1
commit 6ee5270559
6 changed files with 5 additions and 9 deletions

View File

@ -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

View File

@ -57,6 +57,7 @@ Goploy 用于:
- 构建项目
- 发布项目
- 支持git、svn、ftp、sftp
- 监控应用
- 服务器性能
- 秒级定时任务

View File

@ -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

View File

@ -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: ./")

View File

@ -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');

View File

@ -70,12 +70,6 @@ export const constantRoutes: RouteRecordRaw[] = [
},
],
},
{
path: '/server/record',
name: 'record',
component: () => import('@/views/server/record/index.vue'),
meta: { hidden: true },
},
]
/**