diff options
| author | yum <yum.food.vr@gmail.com> | 2023-07-03 18:44:43 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2023-07-03 19:36:13 -0700 |
| commit | 76ae7c28ea6224b2c919122d5dc71bcc00a0ecaa (patch) | |
| tree | 9723fd02715d747cfc439d1f66d36821a56069e9 /BrowserSource/Proxy/Makefile | |
| parent | 7888ccc96d001512dd3bdc01f299856e86c876f5 (diff) | |
Begin work on proxy server
Create a simple server with 3 endpoints:
* /create_session: Create a session and return its identifier.
* /set_transcript: Update a session's transcript.
* /get_transcript: Fetch a session's transcript.
Right now the session ID provides authentication *and* authorization.
There is no public/private ID so you have to trust whoever you share
your ID with.
IDs are long and generated by the server, so it should be somewhat
secure against low-effort hacking.
Other updates:
* Drop whisper_requirements.txt - no longer needed.
* Vendor curl to make it easier to interact with the server.
TODO:
* Fuzz test the server.
Diffstat (limited to 'BrowserSource/Proxy/Makefile')
| -rw-r--r-- | BrowserSource/Proxy/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/BrowserSource/Proxy/Makefile b/BrowserSource/Proxy/Makefile new file mode 100644 index 0000000..81eb814 --- /dev/null +++ b/BrowserSource/Proxy/Makefile @@ -0,0 +1,37 @@ +CC := clang++ + +MAKEFILE_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST)))) + +DEFINES := +CFLAGS := -Wall -Wextra -std=c++20 $(DEFINES) -I$(MAKEFILE_DIR)/fmt/include +LDFLAGS := -L$(MAKEFILE_DIR)/fmt/build -lfmt -static + +SRCS := $(wildcard *.cpp) + +HDRS := $(wildcard *.h) + +OBJS := $(SRCS:.cpp=.o) + +EXE := server + +.PHONY: all +all: $(EXE) + +$(EXE): $(OBJS) + $(CC) -o $@ $^ $(LDFLAGS) + +# Hack: any header change causes a full recompilation of everything. +%.o: %.cpp $(HDRS) + $(CC) $(CFLAGS) -c -o $@ $< + +.PHONY: clean +clean: + @rm -f $(OBJS) $(EXE) + +.PHONY: debug +debug: + @echo "CC: $(CC)" + @echo "MAKEFILE_DIR: $(MAKEFILE_DIR)" + @echo "STT_TOP: $(STT_TOP)" + @echo "OBJS: $(OBJS)" + |
