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
74
74
75
75
[tool .ruff ]
76
76
exclude = [
77
- " veadk/integrations/ve_faas/template/*"
77
+ " veadk/integrations/ve_faas/template/*" ,
78
+ " veadk/integrations/ve_faas/web_template/*"
78
79
]
Original file line number Diff line number Diff line change 16
16
from typing import Any
17
17
18
18
import click
19
+
19
20
from veadk .version import VERSION
20
21
21
22
warnings .filterwarnings (
@@ -70,7 +71,10 @@ def _render_prompts() -> dict[str, Any]:
70
71
def init (
71
72
vefaas_template_type : str ,
72
73
) -> 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
+ """
74
78
import shutil
75
79
from pathlib import Path
76
80
@@ -103,8 +107,8 @@ def init(
103
107
104
108
if not vefaas_template_type :
105
109
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
108
112
109
113
cookiecutter (
110
114
template = str (template_dir_path ),
You can’t perform that action at this time.
0 commit comments