From 3c1c761794593c561bcb5eb0fd76418ddb761ee1 Mon Sep 17 00:00:00 2001 From: Max Melchert <maximilian.melchert@stud.hs-bochum.de> Date: Sat, 15 Mar 2025 13:05:40 +0100 Subject: [PATCH] feat(makefile): add TODO comments after mandatory adjustments - Added "# todo" comments in the Makefile to indicate variables that need mandatory adjustments. --- src/makefile/basic.mk | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/makefile/basic.mk b/src/makefile/basic.mk index e1d9db2..fb1ba24 100644 --- a/src/makefile/basic.mk +++ b/src/makefile/basic.mk @@ -1,8 +1,8 @@ # Configuration ## Server -SERVER_USER := mmustermann -SERVER_HOST := hyrican-1-extern +SERVER_USER := mmustermann # todo +SERVER_HOST := hyrican-1-extern # todo ## Python Environment SERVER_CONDA_PATH := /opt/conda @@ -17,16 +17,16 @@ PYTHON_PACKAGES := tensorflow-cpu ipympl mypy jupyter pystan \ ## Project Paths LOCAL_PROJECT_DIR := . -REMOTE_PROJECT_DIR := ~/akis/my_project +REMOTE_PROJECT_DIR := ~/akis/my_project # todo ## Project Files -MAIN_SCRIPT := main.py +MAIN_SCRIPT := main.py # todo LOG_FILE := progress.log ## File Transfer -LOCAL_UPLOAD_FILES := . -LOCAL_DOWNLOAD_DIR := download -REMOTE_DOWNLOAD_FILES := output/* +LOCAL_UPLOAD_FILES := . # todo +LOCAL_DOWNLOAD_DIR := download # todo +REMOTE_DOWNLOAD_FILES := output/* # todo ## Misc COPY_LINKS_AS_FILES := false -- GitLab