-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: migrate to chi framework (#165)
* refactor: 重构部分完成 * fix: 添加.gitkeep * fix: build * fix: lint * fix: lint * chore(deps): Update module github.com/go-playground/validator/v10 to v10.22.1 (#162) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): Update module gorm.io/gorm to v1.25.12 (#161) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): Update module golang.org/x/net to v0.29.0 (#159) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * workflow: 更新工作流 * workflow: test new download * feat: merge frontend project * workflow: fix frontend build * workflow: fix frontend build * workflow: fix frontend build * workflow: fix frontend build * workflow: fix frontend build * workflow: fix frontend build * workflow: fix frontend build * workflow: fix frontend build * workflow: fix frontend build * workflow: fix frontend build * workflow: fix frontend build * workflow: fix frontend build * workflow: fix frontend build * workflow: update to ubuntu-24.04 * workflow: rename build-* * workflow: 修改fetch-depth * chore(deps): Update dependency eslint to v9 (#164) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(frontend): update dependences * chore(frontend): fix lint * chore(frontend): fix lint * workflow: add govulncheck * workflow: disable nilaway * feat: 使用新的压缩解压库 * fix: 测试 * fix: 测试 * fix: 测试 * feat: 添加ntp包 * chore(deps): Lock file maintenance (#168) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): Update module github.com/go-resty/resty/v2 to v2.15.0 (#167) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): Update dependency @iconify/json to v2.2.249 (#169) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * feat: 添加限流器 * feat: 调整登录限流 * feat: 证书 * fix: lint * feat: 证书dns * feat: 证书acme账号 * fix: 修改UserID导致的一系列问题 * feat: 低配版任务队列 * feat: 队列完成 * fix: lint * fix: lint * fix: swagger和前端路由 * fix: 去掉ntp测试 * feat: 完成插件接口 * feat: 完成cron * feat: 完成safe * chore(deps): Update dependency vue to v3.5.6 (#170) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): Update dependency @vueuse/core to v11.1.0 (#171) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): Update dependency vite to v5.4.6 (#173) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): Update unocss monorepo to v0.62.4 (#172) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore: update renovate config * feat: 新的firewall客户端 * fix: lint * feat: firewall完成 * feat: ssh完成 * feat: 容器完成1/2 * feat: 容器完成 * feat: 文件完成 * feat: systemctl及设置 * fix: windows编译 * fix: session not work * fix: migrate not work * feat: 前端路由 * feat: 初步支持cli --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information
1 parent
3ec8356
commit 1c1f465
Showing
606 changed files
with
36,037 additions
and
38,722 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# Config file for [Air](https://github.com/air-verse/air) in TOML format | ||
|
||
# Working directory | ||
# . or absolute path, please note that the directories following must be under root. | ||
root = "." | ||
tmp_dir = "storage/temp" | ||
|
||
[build] | ||
# Array of commands to run before each build | ||
pre_cmd = [] | ||
# Just plain old shell command. You could use `make` as well. | ||
cmd = "go build -o storage/temp/main.exe ./cmd/app" | ||
# Array of commands to run after ^C | ||
post_cmd = [] | ||
# Binary file yields from `cmd`. | ||
bin = "storage/temp/main.exe" | ||
# Customize binary, can setup environment variables when run your app. | ||
full_bin = "" | ||
# Watch these filename extensions. | ||
include_ext = ["go", "tpl", "tmpl", "html"] | ||
# Ignore these filename extensions or directories. | ||
exclude_dir = ["storage", "web"] | ||
# Watch these directories if you specified. | ||
include_dir = [] | ||
# Watch these files. | ||
include_file = [] | ||
# Exclude files. | ||
exclude_file = [] | ||
# Exclude specific regular expressions. | ||
exclude_regex = ["_test\\.go"] | ||
# Exclude unchanged files. | ||
exclude_unchanged = true | ||
# Follow symlink for directories | ||
follow_symlink = true | ||
# This log file places in your tmp_dir. | ||
log = "build-errors.log" | ||
# It's not necessary to trigger build each time file changes if it's too frequent. | ||
delay = 2000 | ||
# Stop running old binary when build errors occur. | ||
stop_on_error = true | ||
# Send Interrupt signal before killing process (windows does not support this feature) | ||
send_interrupt = false | ||
# Delay after sending Interrupt signal | ||
kill_delay = 500 # nanosecond | ||
# Rerun binary or not | ||
rerun = false | ||
# Delay after each execution | ||
rerun_delay = 500 | ||
|
||
[log] | ||
# Show log time | ||
time = false | ||
# Only show main log (silences watcher, build, runner) | ||
main_only = false | ||
|
||
[color] | ||
# Customize each part's color. If no color found, use the raw app log. | ||
main = "magenta" | ||
watcher = "cyan" | ||
build = "yellow" | ||
runner = "green" | ||
|
||
[misc] | ||
# Delete tmp directory on exit | ||
clean_on_exit = true | ||
|
||
[screen] | ||
clear_on_rebuild = true | ||
keep_scroll = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Backend | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-24.04 | ||
strategy: | ||
matrix: | ||
goarch: [ amd64, arm64 ] | ||
fail-fast: true | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
cache: true | ||
go-version: 'stable' | ||
- name: Install dependencies | ||
run: go mod tidy | ||
- name: Wait for frontend build | ||
uses: lewagon/wait-on-check-action@v1.3.4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha || github.sha }} | ||
check-name: 'build (frontend)' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Download frontend | ||
uses: dawidd6/action-download-artifact@v6 | ||
with: | ||
workflow: build-frontend.yml | ||
name: frontend | ||
path: internal/embed/frontend | ||
check_artifacts: true | ||
- name: Build ${{ matrix.goarch }} | ||
env: | ||
CGO_ENABLED: 0 | ||
GOOS: linux | ||
GOARCH: ${{ matrix.goarch }} | ||
run: | | ||
go build -ldflags '-s -w --extldflags "-static"' -o panel-${{ matrix.goarch }} ./cmd/app | ||
go build -ldflags '-s -w --extldflags "-static"' -o cli-${{ matrix.goarch }} ./cmd/cli | ||
- name: Compress ${{ matrix.goarch }} | ||
run: | | ||
upx --best --lzma panel-${{ matrix.goarch }} | ||
upx --best --lzma cli-${{ matrix.goarch }} | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: panel-${{ matrix.goarch }} | ||
path: | | ||
panel-${{ matrix.goarch }} | ||
cli-${{ matrix.goarch }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Frontend | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
jobs: | ||
build: | ||
name: build (frontend) | ||
runs-on: ubuntu-24.04 | ||
defaults: | ||
run: | ||
working-directory: web | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup pnpm | ||
uses: pnpm/action-setup@v4 | ||
with: | ||
version: latest | ||
run_install: true | ||
package_json_file: web/package.json | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'pnpm' | ||
cache-dependency-path: web/pnpm-lock.yaml | ||
- name: Build frontend | ||
# We need to run the dev server first to generate the auto-imports files | ||
run: | | ||
cp .env.production .env | ||
cp settings/proxy-config.ts.example settings/proxy-config.ts | ||
pnpm dev & | ||
sleep 5 | ||
kill %1 | ||
pnpm build | ||
- name: Upload frontend | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: frontend | ||
path: web/dist/ # https://github.com/actions/upload-artifact/issues/541 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.