Skip to content

Commit

Permalink
Fixed validation warnings; ensure unique project names
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bdufour committed Oct 1, 2024
1 parent d4da38e commit 402c193
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app_spcs_basic/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ files_to_render:
variables:
- name: project_name
prompt: "Project identifier"
default: my_native_app_project
default: my_app_spcs_basic
type: string
2 changes: 1 addition & 1 deletion app_streamlit_java/app/setup_script.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ GRANT USAGE ON FUNCTION core.add(NUMBER, NUMBER) TO APPLICATION ROLE app_public;

-- 5. Create a streamlit object using the code you wrote in you wrote in src/module-ui, as shown below.
-- The `from` value is derived from the stage path described in snowflake.yml
CREATE STREAMLIT core.ui
CREATE OR REPLACE STREAMLIT core.ui
FROM '/streamlit/'
MAIN_FILE = 'ui.py';

Expand Down
2 changes: 1 addition & 1 deletion app_streamlit_java/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ files_to_render:
variables:
- name: project_name
prompt: "Project identifier"
default: my_native_app_project
default: my_app_streamlit_java
type: string
2 changes: 1 addition & 1 deletion app_streamlit_js/app/setup_script.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ GRANT USAGE ON FUNCTION core.add(DOUBLE, DOUBLE) TO APPLICATION ROLE app_public;

-- 5. Create a streamlit object using the code you wrote in you wrote in src/module-ui, as shown below.
-- The `from` value is derived from the stage path described in snowflake.yml
CREATE STREAMLIT core.ui
CREATE OR REPLACE STREAMLIT core.ui
FROM '/streamlit/'
MAIN_FILE = 'ui.py';

Expand Down
2 changes: 1 addition & 1 deletion app_streamlit_js/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ files_to_render:
variables:
- name: project_name
prompt: "Project identifier"
default: my_native_app_project
default: my_app_streamlit_js
type: string
2 changes: 1 addition & 1 deletion app_streamlit_python/app/setup_script.sql
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ GRANT USAGE ON PROCEDURE core.increment_by_one(NUMBER) TO APPLICATION ROLE app_p

-- 5. Create a streamlit object using the code you wrote in you wrote in src/module-ui, as shown below.
-- The `from` value is derived from the stage path described in snowflake.yml
CREATE STREAMLIT core.ui
CREATE OR REPLACE STREAMLIT core.ui
FROM '/streamlit/'
MAIN_FILE = 'ui.py';

Expand Down
2 changes: 1 addition & 1 deletion app_streamlit_python/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ files_to_render:
variables:
- name: project_name
prompt: "Project identifier"
default: my_native_app_project
default: my_app_streamlit_python
type: string

0 comments on commit 402c193

Please sign in to comment.