Skip to content
Snippets Groups Projects
Commit d6659c25 authored by Max Melchert's avatar Max Melchert
Browse files

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.
parent 33e2429a
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment