File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -74,5 +74,6 @@ include-package-data = true
7474
7575[tool .ruff ]
7676exclude = [
77- " veadk/integrations/ve_faas/template/*"
77+ " veadk/integrations/ve_faas/template/*" ,
78+ " veadk/integrations/ve_faas/web_template/*"
7879]
Original file line number Diff line number Diff line change 1616from typing import Any
1717
1818import click
19+
1920from veadk .version import VERSION
2021
2122warnings .filterwarnings (
@@ -70,7 +71,10 @@ def _render_prompts() -> dict[str, Any]:
7071def init (
7172 vefaas_template_type : str ,
7273) -> None :
73- """Init a veadk project that can be deployed to Volcengine VeFaaS."""
74+ """Init a veadk project that can be deployed to Volcengine VeFaaS.
75+
76+ `template` is A2A/MCP/Web server template, `web_template` is for web applications (i.e., a simple blog).
77+ """
7478 import shutil
7579 from pathlib import Path
7680
@@ -103,8 +107,8 @@ def init(
103107
104108 if not vefaas_template_type :
105109 vefaas_template_type = "template"
106-
107- template_dir_path = Path (vefaas .__file__ ).parent / vefaas_template_type
110+
111+ template_dir_path = Path (vefaas .__file__ ).parent / vefaas_template_type
108112
109113 cookiecutter (
110114 template = str (template_dir_path ),
You can’t perform that action at this time.
0 commit comments