Files
scaffoldforge/scaffoldforge/main.py
7000pctAUTO c984c31be0
Some checks failed
CI / test (push) Has been cancelled
fix: resolve CI linting and type checking errors
2026-02-04 05:57:47 +00:00

22 lines
438 B
Python

"""Main entry point for ScaffoldForge CLI."""
from pathlib import Path
from dotenv import load_dotenv
from scaffoldforge.cli import cli
from scaffoldforge.config import load_config
def main():
"""Entry point for the ScaffoldForge CLI."""
load_dotenv()
config_path = Path(__file__).parent / "config.yaml"
if config_path.exists():
load_config(str(config_path))
cli()
if __name__ == "__main__":
main()