Local Streamlit application
These instructions will set up a python environment to run Sentry in.
- 
(if
poetryis not installed) Install poetry using steps from official documentation. - 
Clone the source code and change current directory to its root
 - 
Run
poetry installto install all dependencies - 
Set up Streamlit secrets.
If using project-specific secrets,
.streamlitdirectory needs to be created in the root of the application.Ensure that
connections.defaultis specified in the secrets file, for example:[connections.default] account = "<accountName>" user = "<userName>" warehouse = "<whName>" role = "<role>" # Any role with access to ACCOUNT_USAGE private_key_file = "<pathToPrivateKeyFile>" - 
Run
poetry shellto activate the virtual environment - 
Run
streamlit run src/Authentication.py - 
Open the URL provided by Streamlit in the terminal (typically
http://localhost:8501)