snow init

使用模板创建项目目录。

语法

snow init
  <path>
  --template <template>
  --template-source <template_source>
  --variable <variables>
  --no-interactive
  --format <format>
  --verbose
  --debug
  --silent
Copy

实参

path

要使用项目进行初始化的目录。此目录不能已经存在。

选项

--template TEXT

应该使用哪个模板(--template-source 的子目录)。如果未提供,则整个源将用作模板。

--template-source TEXT

模板目录的本地路径或具有模板且指向 Git 存储库的 URL。默认值:https://github.com/snowflakedb/snowflake-cli-templates (https://github.com/snowflakedb/snowflake-cli-templates)。

--variable, -D TEXT

key=value 格式的字符串。不会提示输入提供的变量。

--no-interactive

禁用提示。默认值:False。

--format [TABLE|JSON]

指定输出格式。默认:TABLE。

--verbose, -v

显示日志级别 info 及更高级别的日志条目。默认值:False。

--debug

显示日志级别 debug 及更高级别的日志条目;调试日志包含其他信息。默认值:False。

--silent

关闭到控制台的中间输出。默认值:False。

--help

显示此命令的帮助文本。

使用说明

snow init 命令会初始化 template.yml 中的 <path> parameter with a chosen template. It renders all files mentioned in the files_to_render 列表内指定的目录,从而解析放在 <! !> 内的变量。如果 template.yml 文件未显示在模板的根目录中,则该命令将会结束并显示错误。有关创建项目模板的信息,请参阅 使用模板引导项目

默认情况下,该命令会以交互方式提示您输入 template.yml 文件中定义的每个参数。您可以通过以下方式绕过交互式提示:

  • 使用 -D 选项指定项目模板中包含的每个参数的值。

  • 使用 --no-interactive 选项,以便对 template.yml 文件中的每个模板参数使用默认值(如果已定义)。

  • 使用 -D--no-interactive 选项的组合来定义某些参数的值,并对模板使用指定的默认值。

    备注

    如果使用 -D 选项提供的值没有定义相应的默认值,则 snow init 命令将终止并显示错误。

示例

  • 提示使用 snowflake-cli-templates Git 存储库 (https://github.com/snowflakedb/snowflake-cli-templates/) 中包含的 example_snowpark 模板中指定的参数,从而引导 Snowpark 项目。

    snow init new_snowpark_project --template example_snowpark
    
      Project identifier (used to determine artifacts stage path) [my_snowpark_project]:
      What stage should the procedures and functions be deployed to? [dev_deployment]: snowpark
    
    Copy
    Initialized the new project in new_snowpark_project
    
  • 使用 -D 选项为本地 ../local_templates/example_streamlit 模板中指定的某些参数提供值,并提示提供其他参数,从而引导 Streamlit 项目。

    snow init new_streamlit_project --template-source ../local_templates/example_streamlit -D query_warehouse=dev_wareshouse -D stage=testing
    
      Name of the streamlit app [streamlit_app]: My streamlit
    
    Copy
    Initialized the new project in new_streamlit_project
    
语言: 中文