Mostly works! Image loading and caching seems slow

This commit is contained in:
2025-02-16 20:36:13 -05:00
parent de565fce4f
commit b2ed4cc4e5
14 changed files with 625 additions and 6 deletions

10
src/config/args.py Normal file
View File

@ -0,0 +1,10 @@
import argparse
def create_parser():
parser = argparse.ArgumentParser(description="foldsite is a dynamic site generator")
parser.add_argument(
"--config", type=str, default="config.toml", help="config file path"
)
return parser