-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.py
22 lines (15 loc) · 884 Bytes
/
home.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import streamlit as st
from utils.set_variables import check_session_state, set_variables, check_variables
st.set_page_config(
page_title="dbt mesh Explorer",
page_icon="👋",
)
st.write("# Welcome to the dbt mesh Explorer and Project Evaluator beta! 👋")
st.write("Click on the pages to the left to explore the mesh and get recommendations for your dbt projects.")
st.header("dbt mesh Explorer")
st.write("This page allows you to explore the dbt mesh and see the lineage of public models in your dbt Account.")
st.header("`dbt_project_evaluator`")
st.write("This page allows you to see best practice recommendations for the models and sources in your dbt projects.")
st.markdown("This represents a subset of the rules found in the [dbt package](https://hub.getdbt.com/dbt-labs/dbt_project_evaluator/latest/) of the same name!")
set_variables()
check_variables()