mirror of
https://github.com/chenasraf/nextcloud-deck-tools.git
synced 2026-05-17 17:28:07 +00:00
feat: add makefile
This commit is contained in:
4
.editorconfig
Normal file
4
.editorconfig
Normal file
@@ -0,0 +1,4 @@
|
||||
[Makefile]
|
||||
indent_style = tab
|
||||
indent_size = 4
|
||||
tab_width = 4
|
||||
18
Makefile
Normal file
18
Makefile
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user