2023-08-25 09:03:42 +00:00
{
"properties" : {
"project_name" : {
"type" : "string" ,
"default" : "my_project" ,
2023-09-06 09:52:31 +00:00
"description" : "Unique name for this project" ,
"order" : 1
} ,
"include_notebook" : {
"type" : "string" ,
"default" : "yes" ,
2023-09-13 17:57:31 +00:00
"enum" : [ "yes" , "no" ] ,
2023-09-21 19:13:37 +00:00
"description" : "Include a stub (sample) notebook in '{{.project_name}}{{path_separator}}src'" ,
2023-09-06 09:52:31 +00:00
"order" : 2
} ,
"include_dlt" : {
"type" : "string" ,
"default" : "yes" ,
2023-09-13 17:57:31 +00:00
"enum" : [ "yes" , "no" ] ,
2023-09-21 19:13:37 +00:00
"description" : "Include a stub (sample) Delta Live Tables pipeline in '{{.project_name}}{{path_separator}}src'" ,
2023-09-06 09:52:31 +00:00
"order" : 3
} ,
"include_python" : {
"type" : "string" ,
"default" : "yes" ,
2023-09-13 17:57:31 +00:00
"enum" : [ "yes" , "no" ] ,
2023-09-21 19:13:37 +00:00
"comment" : "If the selected they don't want a notebook we provide an extra hint that the stub Python package can be used to author their DLT pipeline" ,
"description" : "Include a stub (sample) Python package in '{{.project_name}}{{path_separator}}src'" ,
2023-09-06 09:52:31 +00:00
"order" : 4
2023-08-25 09:03:42 +00:00
}
2023-09-21 19:13:37 +00:00
} ,
"successMessage" : "\n✨ Your new project has been created under '{{.project_name}}{{path_separator}}'!\n\nPlease refer to the README.md of your project for further instructions on getting started.\nOr read the documentation on Databricks Asset Bundles at https://docs.databricks.com/dev-tools/bundles/index.html."
2023-08-25 09:03:42 +00:00
}