diff options
| author | diogo464 <[email protected]> | 2025-07-21 15:02:48 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-07-21 15:02:48 +0100 |
| commit | 8c8dabd0ed20679a2dad43a5c239f9fcfe1c1ad7 (patch) | |
| tree | 55abbcfbbff19efa3aaf6cf36540ac7651c54973 /Justfile | |
init
Diffstat (limited to 'Justfile')
| -rw-r--r-- | Justfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Justfile b/Justfile new file mode 100644 index 000000000..f91b708a3 --- /dev/null +++ b/Justfile | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | _default: | ||
| 2 | just --list | ||
| 3 | |||
| 4 | scrape: | ||
| 5 | ./fetch-sitemap | ||
| 6 | ./setup-directories | ||
| 7 | ./list-slugs | xargs -L 64 -P 40 ./fetch-page | ||
| 8 | ./list-slugs | xargs -L 64 -P 0 ./extract-id | ||
| 9 | ./list-slugs | xargs -L 64 -P 40 ./fetch-ics | ||
| 10 | ./list-slugs | xargs -L 64 -P 40 ./fetch-data | ||
| 11 | ./list-slugs | xargs -L 64 -P 40 ./fetch-image | ||
| 12 | ./list-slugs | xargs -L 64 -P 40 ./fetch-location | ||
| 13 | ./list-slugs | xargs -L 64 -P 20 ./fetch-oneline-description | ||
| 14 | ./list-slugs | xargs -L 64 -P 40 ./extract-date | ||
| 15 | ./list-slugs | xargs -L 64 -P 40 ./extract-categories | ||
| 16 | ./list-slugs | xargs -L 64 -P 40 ./extract-circuits | ||
| 17 | ./list-slugs | xargs -L 64 -P 40 ./extract-organizer | ||
| 18 | |||
| 19 | scrape-categories: | ||
| 20 | ./list-slugs | xargs -e -L 64 -P 1 ./extract-categories | ||
| 21 | |||
| 22 | scrape-circuits: | ||
| 23 | ./list-slugs | xargs -e -L 64 -P 1 ./extract-circuits | ||
| 24 | |||
| 25 | scrape-organizer: | ||
| 26 | ./list-slugs | xargs -e -L 64 -P 1 ./extract-organizer | ||
