byokey 0.7.1

Bring Your Own Keys — AI subscription-to-API proxy gateway
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: build build-release desktop clean

# Build the byokey binary (debug)
build:
	cargo build

# Build the byokey binary (release)
build-release:
	cargo build --release

# Build the binary then open the Xcode project
desktop: build
	open desktop/Byokey.xcodeproj

clean:
	cargo clean