mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
10 lines
303 B
Bash
Executable file
10 lines
303 B
Bash
Executable file
# generate gen code
|
|
pushd ./cmd/gen || exit
|
|
go run generate.go -config ../../app.ini
|
|
popd || exit
|
|
|
|
# generate error definitions
|
|
go run cmd/errdef/generate.go . ts ./app/src/constants/errors
|
|
|
|
# parse nginx directive indexs
|
|
go run cmd/ngx_dir_index/ngx_dir_index.go ./internal/nginx/nginx_directives.json
|