add: meal ingestion CLI for images and metadata
All checks were successful
Deploy on push / deploy (push) Has been skipped

This commit is contained in:
2026-03-22 20:09:23 -07:00
parent 21c3a0c4b2
commit 8f9a7eda2f
6 changed files with 308 additions and 12 deletions

View File

@@ -63,4 +63,15 @@ function main() {
writeFile(indexOutputPath, buildIndex());
}
main();
function buildPages() {
main();
}
if (require.main === module) {
buildPages();
}
module.exports = {
buildPages,
buildIndex,
};