Support other webapp types (react, static). #721

Merged
telackey merged 8 commits from telackey/webapp-detect into main 2024-02-03 00:04:06 +00:00
Showing only changes of commit a5ce189468 - Show all commits

View File

@ -196,7 +196,7 @@ def file_hash(filename):
def determine_base_container(clone_dir, app_type="webapp"):
if not app_type.startswith("webapp"):
if not app_type or not app_type.startswith("webapp"):
raise Exception(f"Unsupported app_type {app_type}")
base_container = "cerc/webapp-base"