Simple Flask app that recommends outfits based on current weather and your saved wardrobe.
- Weather-based outfit recommendations (OpenWeatherMap)
- View, add, edit, and delete wardrobe items
- Clean, responsive UI
- Create and activate a virtual environment (optional but recommended).
- Install dependencies:
pip install -r requirements.txt
- Get an OpenWeatherMap API key and set it as an environment variable:
- Windows PowerShell:
$env:OPENWEATHERMAP_API_KEY="YOUR_KEY"
- macOS/Linux:
export OPENWEATHERMAP_API_KEY="YOUR_KEY"
- Run the app:
python app.py
- Open http://127.0.0.1:5000 in your browser.
- Wardrobe data is stored in
wardrobe.json. - If the API key is missing, the backend returns a clear error.