{"id":26577954,"url":"https://github.com/nicholasbelschner/advanceweatherapp","last_synced_at":"2026-04-02T04:47:56.940Z","repository":{"id":283824395,"uuid":"953023723","full_name":"NicholasBelschner/AdvanceWeatherApp","owner":"NicholasBelschner","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-22T12:03:04.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-22T12:27:32.785Z","etag":null,"topics":["ai","future","machine-learning","python","quantum-computing","startup","technology","weather-app"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NicholasBelschner.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-22T11:49:20.000Z","updated_at":"2025-03-22T12:04:00.000Z","dependencies_parsed_at":"2025-03-22T12:39:07.716Z","dependency_job_id":null,"html_url":"https://github.com/NicholasBelschner/AdvanceWeatherApp","commit_stats":null,"previous_names":["nicholasbelschner/advanceweatherapp"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NicholasBelschner%2FAdvanceWeatherApp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NicholasBelschner%2FAdvanceWeatherApp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NicholasBelschner%2FAdvanceWeatherApp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NicholasBelschner%2FAdvanceWeatherApp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NicholasBelschner","download_url":"https://codeload.github.com/NicholasBelschner/AdvanceWeatherApp/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245052901,"owners_count":20553224,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","future","machine-learning","python","quantum-computing","startup","technology","weather-app"],"created_at":"2025-03-23T04:18:12.655Z","updated_at":"2025-12-30T20:39:20.104Z","avatar_url":"https://github.com/NicholasBelschner.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg width=\"1728\" alt=\"Screenshot 2025-03-22 at 7 48 35 AM\" src=\"https://github.com/user-attachments/assets/23f28155-d3fb-4cb4-aeea-4110451f9bc6\" /\u003e\n\n# 🌦️ Advanced Weather App\n\nA futuristic weather application featuring a 3D interactive globe, real-time weather data, and AI-powered predictions.\n\n## 🛠️ Tech Stack\n\n**Frontend:** React, TypeScript, Three.js, Material-UI, Framer Motion  \n**Backend:** Flask, TensorFlow, Python 3.11  \n**Database:** MongoDB  \n**APIs:** OpenWeather API\n\n## 🚀 Quick Setup Guide\n\n### 1️⃣ Clone \u0026 Navigate\n```bash\ngit clone https://github.com/NicholasBelschner/AdvanceWeatherApp.git\ncd AdvanceWeatherApp\n```\n\n### 2️⃣ Backend Setup\n```bash\ncd backend\npython -m venv venv\n\n# Activate virtual environment\n# For Windows:\nvenv\\Scripts\\activate\n# For macOS/Linux:\nsource venv/bin/activate\n\n# Install dependencies\npip install -r requirements.txt\n\n# Create .env file\ncp .env.example .env\n```\n\nInside `backend/.env`, add:\n```env\nFLASK_APP=app.py\nFLASK_ENV=development\nOPENWEATHER_API_KEY=your-api-key-here\nMONGODB_URI=your-mongodb-uri\n```\n\n### 3️⃣ Frontend Setup\n```bash\ncd ../frontend\n\n# Install dependencies\nnpm install\n\n# Create .env file\ncp .env.example .env\n```\n\nInside `frontend/.env`, add:\n```env\nREACT_APP_API_URL=http://localhost:5000\nREACT_APP_WEATHER_API_KEY=your-api-key-here\n```\n\n### 4️⃣ Start the Application\n\nStart Backend (Terminal 1):\n```bash\ncd backend\nsource venv/bin/activate  # or venv\\Scripts\\activate for Windows\npython app.py\n```\n\nStart Frontend (Terminal 2):\n```bash\ncd frontend\nnpm start\n```\n\n✅ App is now running!\n- Frontend: http://localhost:3000\n- Backend: http://localhost:5000\n\n## 🔧 Common Issues \u0026 Solutions\n\n### Backend Issues\n```bash\n# If dependencies fail to install\npip install --upgrade pip\npip install -r requirements.txt\n\n# If virtual environment is corrupted\nrm -rf venv\npython -m venv venv\nsource venv/bin/activate\npip install -r requirements.txt\n```\n\n### Frontend Issues\n```bash\n# If node_modules issues occur\nrm -rf node_modules package-lock.json\nnpm install\n\n# If port 3000 is in use\n# For Windows:\nnetstat -ano | findstr :3000\ntaskkill /PID \u003cPID\u003e /F\n# For macOS/Linux:\nlsof -i :3000\nkill -9 \u003cPID\u003e\n```\n\n## 📝 API Keys Setup\n\n1. Get OpenWeather API Key:\n   - Sign up at https://openweathermap.org/api\n   - Copy your API key\n   - Add to both `.env` files\n\n2. Optional: MongoDB Setup\n   - Use local MongoDB or\n   - Create free cluster at MongoDB Atlas\n   - Add connection string to `backend/.env`\n\n## 🌟 Features\n\n- 🌍 Interactive 3D Earth visualization\n- 🌤️ Real-time weather data display\n- 🎨 Futuristic UI with animations\n- 📱 Responsive design\n- 🤖 AI-powered weather predictions\n- 🗣️ Voice command support\n\n## 🤝 Contributing\n\n1. Fork repo\n2. Create feature branch (`git checkout -b feature/Amazing`)\n3. Commit changes (`git commit -m 'Add Amazing Feature'`)\n4. Push branch (`git push origin feature/Amazing`)\n5. Open Pull Request\n\n## 📜 License\n\nMIT License - See [LICENSE](LICENSE) file\n\n## 👤 Author\n\nNicholas Belschner\n\n## 💡 Need Help?\n\n- Check common issues above\n- Open an issue\n- Contact: [Your Contact Info] \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnicholasbelschner%2Fadvanceweatherapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnicholasbelschner%2Fadvanceweatherapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnicholasbelschner%2Fadvanceweatherapp/lists"}