From d6659c2588490e073595e5b880e5671c11a2b3fa Mon Sep 17 00:00:00 2001
From: Max Melchert <maximilian.melchert@stud.hs-bochum.de>
Date: Sat, 15 Mar 2025 13:03:48 +0100
Subject: [PATCH] fix(makefile): simplify example config variable values

- Simplified example config variable values in the Makefile to avoid overwhelming users.
- Enhanced clarity for better understanding of configuration options.
---
 src/makefile/basic.mk | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/makefile/basic.mk b/src/makefile/basic.mk
index 7a6d450..e1d9db2 100644
--- a/src/makefile/basic.mk
+++ b/src/makefile/basic.mk
@@ -24,9 +24,9 @@ MAIN_SCRIPT := main.py
 LOG_FILE := progress.log
 
 ## File Transfer
-LOCAL_UPLOAD_FILES := main.py scripts data/*.pkl
-LOCAL_DOWNLOAD_DIR := output
-REMOTE_DOWNLOAD_FILES := output/*.svg output/*.pkl
+LOCAL_UPLOAD_FILES := .
+LOCAL_DOWNLOAD_DIR := download
+REMOTE_DOWNLOAD_FILES := output/*
 
 ## Misc
 COPY_LINKS_AS_FILES := false
@@ -36,7 +36,7 @@ COPY_LINKS_AS_FILES := false
 LOGIN := $(SERVER_USER)@$(SERVER_HOST)
 SSH := ssh $(LOGIN)
 RSYNC := rsync --archive --compress --progress $(if $(filter true,$(COPY_LINKS_AS_FILES)),--copy-links)
-MAMBA := source $(SERVER_CONDA_PATH)/etc/profile.d/conda.sh && mamba # TODO: mamba.sh
+MAMBA := source $(SERVER_CONDA_PATH)/etc/profile.d/conda.sh && mamba
 CONDA := source $(SERVER_CONDA_PATH)/etc/profile.d/conda.sh && conda
 
 .PHONY: install upload run kill log download delete
-- 
GitLab