This repository contains a simple Travel Itinerary Planner. It includes:
- A console-based Java app: travelitineraryplanner.java
- A static web frontend (basic) at: web/index.html
Features:
- Input trip dates, destinations and preferences
- OpenWeather API integration for weather lookups (optional API key)
- Budget & expense tracking
- Maps placeholder for future integration
Run the console app (requires JDK):
javac travelitineraryplanner.java
java travelitineraryplannerOpen the frontend:
- Open web/index.html in a browser (static file).
- Or serve the
webfolder with a static server (e.g.,npx http-server weborpython -m http.serverinsideweb).