mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted-data.git
synced 2026-03-11 08:55:24 +00:00
tools: automatically add github metadata (stargazers_count/updated_at) to github software entries missing these (make process)
- https://docs.github.com/en/actions/security-guides/automatic-token-authentication - tools: makefile: install python3-wheel before pip packages installation so that bdist_wheel does not fail
This commit is contained in:
parent
cd5930fc2a
commit
82a27ce2b4
1 changed files with 2 additions and 1 deletions
3
Makefile
3
Makefile
|
|
@ -4,6 +4,7 @@ SHELL := /bin/bash
|
|||
install:
|
||||
python3 -m venv .venv
|
||||
source .venv/bin/activate && \
|
||||
pip3 install wheel && \
|
||||
pip3 install --force git+https://github.com/nodiscc/hecat.git@hecat-process
|
||||
|
||||
.PHONY: import # import data from original list at https://github.com/awesome-selfhosted/awesome-selfhosted
|
||||
|
|
@ -19,7 +20,7 @@ import: install
|
|||
.PHONY: process # apply automatic processing (gather github metadata)
|
||||
process: install
|
||||
source .venv/bin/activate && \
|
||||
hecat process --processors github_metadata --source-directory ./
|
||||
hecat process --processors github_metadata --source-directory ./ --options=gh-metadata-only-missing
|
||||
|
||||
.PHONY: build # build markdown singlepage document from yaml data
|
||||
build: install
|
||||
|
|
|
|||
Loading…
Reference in a new issue