From 09d76f794f30c8834f9c240f0ad5142cee4f7446 Mon Sep 17 00:00:00 2001 From: Chen Asraf Date: Mon, 15 Sep 2025 00:10:52 +0300 Subject: [PATCH] feat: add makefile --- .editorconfig | 4 ++++ Makefile | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 .editorconfig create mode 100644 Makefile diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..bf254cf --- /dev/null +++ b/.editorconfig @@ -0,0 +1,4 @@ +[Makefile] +indent_style = tab +indent_size = 4 +tab_width = 4 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e203237 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +list_stacks: + @printf "Domain: "; \ + read DOMAIN; \ + printf "Board ID: "; \ + read BOARD_ID; \ + poetry run python list_stacks.py --domain $$DOMAIN --board-id $$BOARD_ID + +import: + @printf "Domain: "; \ + read DOMAIN; \ + printf "Board ID: "; \ + read BOARD_ID; \ + printf "Stack ID: "; \ + read STACK_ID; \ + printf "CSV File: "; \ + read CSV_FILE; \ + poetry run python import.py --domain $$DOMAIN --board-id $$BOARD_ID --stack-id $$STACK_ID --csv-file $$CSV_FILE +