This project is a simple Flask-based web application used to visualize and explore water analysis data.
-
(Optional) Create and activate a virtual environment
python3 -m venv <venv_name> source <venv_name>/bin/activate
-
Install dependencies
pip install -r requirements.txt
-
Run the application
python3 app.py
The application will be available at http://127.0.0.1:5000 by default.
- Open the application in a web browser
- Interact with the interface to visualize water analysis data
├── README.md
├── app.py
├── data.json
├── requirements.txt
├── static
│ ├── css
│ │ └── style.css
│ └── js
│ └── main.js
└── templates
└── index.html
- app.py : Application entry point and Flask server configuration
- data.json : Contains water analysis data
- requirements.txt : Python dependencies required to run the project
- static/ : Frontend assets
- templates/ : HTML templates rendered by Flask