15 lines
234 B
Makefile
15 lines
234 B
Makefile
_:
|
|
@just --list
|
|
|
|
alias b:=build
|
|
alias r:=run
|
|
|
|
# Build llm-proxy
|
|
build:
|
|
go build
|
|
|
|
# Run llm-proxy
|
|
run:
|
|
te -X -k $(cat ~/.config/envs/LCOAL_DEFAULT_TINY_ENCRYPT_KEY_ID) ~/secrets/alibaba-cloud-ai-cn.env.tinyenc -- go run main.go
|
|
|