feat: add makefile

This commit is contained in:
2025-09-15 00:10:52 +03:00
parent f5c3a37456
commit 09d76f794f
2 changed files with 22 additions and 0 deletions

4
.editorconfig Normal file
View File

@@ -0,0 +1,4 @@
[Makefile]
indent_style = tab
indent_size = 4
tab_width = 4

18
Makefile Normal file
View File

@@ -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