diff --git a/Makefile b/Makefile index 137c52b..0aa3f87 100644 --- a/Makefile +++ b/Makefile @@ -26,9 +26,13 @@ vieter-prod: $(SOURCES) # =====EXECUTION===== # Run the server in the default 'data' directory .PHONY: run -run: vieter +run: debug API_KEY=test REPO_DIR=data LOG_LEVEL=DEBUG ./vieter +.PHONY: run-prod +run-prod: prod + API_KEY=test REPO_DIR=data LOG_LEVEL=DEBUG ./vieter-prod + # Same as run, but restart when the source code changes .PHONY: watch watch: diff --git a/src/archive.v b/src/archive.v index ef36205..4ae94d7 100644 --- a/src/archive.v +++ b/src/archive.v @@ -16,5 +16,5 @@ pub fn list_filenames() { a := C.archive_read_new() C.archive_read_support_filter_all(a) C.archive_read_support_format_all(a) - println(a) + // println(a) }