mirror of
https://github.com/fatedier/frp.git
synced 2025-07-29 09:18:11 +00:00
.circleci
.github
assets
client
cmd
conf
doc
dockerfiles
hack
pkg
server
test
web
frpc
public
src
.eslintrc.cjs
.gitignore
.prettierrc.json
Makefile
README.md
auto-imports.d.ts
components.d.ts
env.d.ts
index.html
package.json
tsconfig.json
tsconfig.node.json
vite.config.mts
yarn.lock
frps
.gitignore
.golangci.yml
.goreleaser.yml
LICENSE
Makefile
Makefile.cross-compiles
README.md
README_zh.md
Release.md
go.mod
go.sum
package.sh
26 lines
262 B
Markdown
26 lines
262 B
Markdown
# frpc-dashboard
|
|
|
|
## Project Setup
|
|
|
|
```sh
|
|
yarn install
|
|
```
|
|
|
|
### Compile and Hot-Reload for Development
|
|
|
|
```sh
|
|
make dev
|
|
```
|
|
|
|
### Type-Check, Compile and Minify for Production
|
|
|
|
```sh
|
|
make build
|
|
```
|
|
|
|
### Lint with [ESLint](https://eslint.org/)
|
|
|
|
```sh
|
|
make lint
|
|
```
|