Implement Lychee #731

Open
opened 2025-11-19 20:59:07 -06:00 by GiteaMirror · 3 comments
Owner

Originally created by @Technetium1 on GitHub (Apr 7, 2025).

Originally assigned to: @Technetium1 on GitHub.

Basic automation for links on push and PR.

Originally created by @Technetium1 on GitHub (Apr 7, 2025). Originally assigned to: @Technetium1 on GitHub. Basic automation for links on push and PR.
GiteaMirror added the enhancementtools labels 2025-11-19 20:59:07 -06:00
Author
Owner

@nodiscc commented on GitHub (Apr 7, 2025):

Don't bother too much.
The long-term plan is to use the same static site generation system as https://awesome-selfhosted.net/ (https://github.com/nodiscc/hecat/)

@nodiscc commented on GitHub (Apr 7, 2025): Don't bother too much. The long-term plan is to use the same static site generation system as https://awesome-selfhosted.net/ (https://github.com/nodiscc/hecat/)
Author
Owner
@nodiscc commented on GitHub (Apr 10, 2025): All the required tools/commands are here https://github.com/awesome-selfhosted/awesome-selfhosted-data/blob/master/Makefile The hecat config is here https://github.com/awesome-selfhosted/awesome-selfhosted-data/tree/master/.hecat The CI config is here https://github.com/awesome-selfhosted/awesome-selfhosted-data/tree/master/.github/workflows
Author
Owner

@nodiscc commented on GitHub (Apr 13, 2025):

Crude URL check until then:

$ grep -E --only-matching 'https?[^\)]*' README.md  | sort --unique | while read url; do echo -n "$url: "; curl -L -s -o /dev/null -w "%{http_code}" "$url"; echo; done
http://adagios.org/: 200
http://creativecommons.org/licenses/by-sa/4.0/: 200
http://dar.linux.free.fr/: 200
http://demo.icecoder.net: 200
http://gearman.org/: 200
http://i.creativecommons.org/l/by-sa/4.0/88x31.png: 200
http://imapsync.lamiral.info/: 200
http://opentsdb.net/docs/build/html/user_guide/utilities/tcollector.html: 200
http://pad.haroopress.com/: 200
http://pcp.io: 200
...
@nodiscc commented on GitHub (Apr 13, 2025): Crude URL check until then: ```bash $ grep -E --only-matching 'https?[^\)]*' README.md | sort --unique | while read url; do echo -n "$url: "; curl -L -s -o /dev/null -w "%{http_code}" "$url"; echo; done ``` ``` http://adagios.org/: 200 http://creativecommons.org/licenses/by-sa/4.0/: 200 http://dar.linux.free.fr/: 200 http://demo.icecoder.net: 200 http://gearman.org/: 200 http://i.creativecommons.org/l/by-sa/4.0/88x31.png: 200 http://imapsync.lamiral.info/: 200 http://opentsdb.net/docs/build/html/user_guide/utilities/tcollector.html: 200 http://pad.haroopress.com/: 200 http://pcp.io: 200 ... ```
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-sysadmin#731