tools: move hecat configuration to .hecat/ subdirectory

This commit is contained in:
nodiscc
2022-12-05 19:14:59 +01:00
parent 5d1e629e05
commit 80b3c3a75d
5 changed files with 4 additions and 4 deletions

View File

@@ -15,23 +15,23 @@ import: install
rm -rf tags/ software/ platforms/
mkdir -p tags/ software/ platforms/
source .venv/bin/activate && \
hecat --config .hecat.import.yml
hecat --config .hecat/import.yml
.PHONY: update_metadata # update metadata from project repositories/API
update_metadata: install
source .venv/bin/activate && \
hecat --config .hecat.update_metadata.yml
hecat --config .hecat/update-metadata.yml
.PHONY: awesome_lint # check data against awesome-selfhosted guidelines
awesome_lint: install
source .venv/bin/activate && \
hecat --config .hecat.awesome_lint.yml
hecat --config .hecat/awesome-lint.yml
.PHONY: export # export markdown singlepage document from yaml data
export: install
rm -rf awesome-selfhosted && git clone https://github.com/awesome-selfhosted/awesome-selfhosted
source .venv/bin/activate && \
hecat --config .hecat.export.yml
hecat --config .hecat/export.yml
cd awesome-selfhosted && git diff --color=always
.PHONY: help # generate list of targets with descriptions