Compare commits

...

3 Commits
v2.3.0 ... v2

Author SHA1 Message Date
coward
9497729378 🐳消除打包时的docker警告
All checks were successful
continuous-integration/drone/tag Build is passing
2024-12-27 15:36:32 +08:00
coward
48a58759da 🐳修改dockerfile在编译时存在警告
All checks were successful
continuous-integration/drone/tag Build is passing
2024-12-27 15:16:44 +08:00
coward
36f0202c57 🎨定时任务掉了
All checks were successful
continuous-integration/drone/tag Build is passing
2024-12-27 11:50:52 +08:00
3 changed files with 6 additions and 21 deletions

View File

@ -1,9 +1,9 @@
# 打包前端
FROM node:18-alpine as build-front
FROM node:18-alpine AS build-front
WORKDIR front
WORKDIR /front
COPY . .
WORKDIR web
WORKDIR ./web
RUN corepack enable
RUN corepack prepare pnpm@8.6.10 --activate
@ -13,7 +13,7 @@ RUN pnpm build
RUN ls -lh && pwd
# 前后端集成打包
FROM golang:alpine as build-backend
FROM golang:alpine AS build-backend
RUN apk add upx
WORKDIR /build

View File

@ -8,6 +8,7 @@ import (
"sort"
"time"
tui "wireguard-ui/cli"
"wireguard-ui/cron"
"wireguard-ui/http"
"wireguard-ui/initialize"
"wireguard-ui/script"
@ -18,7 +19,7 @@ func init() {
if err := script.New().Do(); err != nil {
log.Errorf("执行脚本失败: %v", err.Error())
}
cron.Task()
}
func main() {

View File

@ -1,16 +0,0 @@
package model
// AuthClient
// @description: 认证客户端
type AuthClient struct {
Base
Name string `json:"name" gorm:"type:varchar(255);not null;comment: '客户端名称'"`
ClientID string `json:"clientID" gorm:"type:varchar(255);not null;comment: '客户端ID'"`
ClientKey string `json:"clientKey" gorm:"type:varchar(255);not null;comment: '客户端key'"`
ExpireAt string `json:"expireAt" gorm:"type:varchar(255);not null;comment: '过期时间'"`
IsEnabled int `json:"isEnabled" gorm:"type:int(1);not null;comment: '是否启用'"`
}
func (AuthClient) TableName() string {
return "t_oauth_client"
}