first commit:add basic layout

This commit is contained in:
2023-09-18 18:22:59 +08:00
parent 4298c6a50d
commit ad425d9614
37 changed files with 6412 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
export GO111MODULE=on
export CGO_ENABLED=0
export GOOS=linux
export GOARCH=amd64
build: frpc-panel
cp ./config/frpc-panel.toml ./bin/frpc-panel.toml
cp -r ./assets/ ./bin/assets/
frpc-panel:
rm -rf ./bin
go build -o ./bin/frpc-panel ./cmd/frpc-panel