update release process and README
All checks were successful
Test Suite / lint (push) Successful in 30s
Security Scan / security (push) Successful in 36s
Security Scan / dependency-check (push) Successful in 29s
Test Suite / test (3.11) (push) Successful in 1m37s
Test Suite / build (push) Successful in 36s

This commit is contained in:
2025-10-01 07:38:56 -07:00
parent 314151e525
commit dfcfe4fd7c
5 changed files with 112 additions and 16 deletions

View File

@@ -134,6 +134,11 @@ def run_app(app=None, debug=None, host=None, port=None):
)
if __name__ == "__main__":
def main():
"""Main entry point for the embeddingbuddy CLI command."""
app = create_app()
run_app(app)
if __name__ == "__main__":
main()