You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Virtual environments
source venv/bin/activate(Linux/Mac)
python -m venv venv(Windows)
## Relevant Packages
pip install -r requirements.txt
## Environment Variables
Create a .env file and fill with the following:
DB_HOST=...
DB_PORT=...
DB_NAME=...
DB_USER=...
DB_PASSWORD=...
# .streamlit
In the secrets.toml file, fill with Database URL to
connect application to database
NOTES:
[This project runs with a local PostgreSQL database.
PostgreSQL is available for download and setup here:]
(https://www.postgresql.org/). SQL can also be used,
though requirements differ slightly.
* For MySQL, see load.py file to select relevant URL
setup.