Python Streamlit app for viewing CO2 sensor data on a simple map dashboard.
Create the virtual environment:
python -m venv venv
Activate it (macOS/Linux):
source venv/bin/activate
pip install -r requirements.txt
Create .streamlit/secrets.toml with your credentials:
SPOTTER_ID = "SPOT-31299C"
API_TOKEN = "your_api_token_here"To pre-fill the dashboard form fields during development, copy the example environment file:
cp .env.example .env
Then edit .env with your preferred defaults:
DEFAULT_START_DATE=2025-01-01T00:00ZWhen you're done working on the project:
deactivate
Run locally with:
streamlit run app.py