add basic question uploading

This commit is contained in:
2025-05-02 13:03:30 +02:00
parent 4af8c825bb
commit e90dfa0b0b
10 changed files with 656 additions and 43 deletions

View File

@@ -4,6 +4,9 @@ SRCS_RUST_THESEUS_SERVER := $(shell find theseus-server -type f)
build: \
dst/release/theseus-server
include config/make.mk
include client/make.mk
.PHONY: run
run: dst/dev.toml $(TARGETS_CLIENT)
cargo run --package theseus-server -- dst/dev.toml
@@ -12,9 +15,6 @@ run: dst/dev.toml $(TARGETS_CLIENT)
clean: client_clean
rm -rf dst
include config/make.mk
include client/make.mk
dst/release/theseus-server: $(SRCS_RUST_THESEUS_SERVER) $(TARGETS_CLIENT)
cargo build --package theseus-server --release
touch $@