{"id":15141784,"url":"https://github.com/frnn4268/weather-app","last_synced_at":"2026-01-25T00:30:52.437Z","repository":{"id":253043016,"uuid":"842286342","full_name":"Frnn4268/weather-app","owner":"Frnn4268","description":"A weather application built using React and Vite.js. This app allows users to view current weather information and forecast data for different locations.","archived":false,"fork":false,"pushed_at":"2024-08-15T05:46:35.000Z","size":948,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-15T11:50:32.741Z","etag":null,"topics":["cypress","docker","docker-compose","docker-image","openweathermap-api","reactjs","vitejs"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/Frnn4268.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":"2024-08-14T03:35:32.000Z","updated_at":"2024-11-27T21:21:13.000Z","dependencies_parsed_at":"2024-09-21T14:02:40.844Z","dependency_job_id":"3d344bfb-22f3-4f89-9af0-d4c1a71b58f0","html_url":"https://github.com/Frnn4268/weather-app","commit_stats":null,"previous_names":["frnn4268/weather-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Frnn4268/weather-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frnn4268%2Fweather-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frnn4268%2Fweather-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frnn4268%2Fweather-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frnn4268%2Fweather-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Frnn4268","download_url":"https://codeload.github.com/Frnn4268/weather-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frnn4268%2Fweather-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271495556,"owners_count":24769613,"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","status":"online","status_checked_at":"2025-08-21T02:00:08.990Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["cypress","docker","docker-compose","docker-image","openweathermap-api","reactjs","vitejs"],"created_at":"2024-09-26T09:01:57.490Z","updated_at":"2026-01-25T00:30:52.402Z","avatar_url":"https://github.com/Frnn4268.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Weather App\n\nA simple weather application built using React and Vite.js. This app allows users to view current weather information and forecast data for different locations.\n\n## Features\n\n- View current weather data.\n- Search for weather information by location.\n- Responsive design for mobile and desktop views.\n- Shows detailed weather data for specific cities.\n\n\n## Technologies Used\n\n- **React**: Frontend library for building user interfaces.\n- **Vite.js**: Build tool for faster development and optimized builds.\n- **CSS**: For styling the application.\n- **OpenWeather API**: For fetching weather data.\n\n\n## Getting Started\n\nTo get started with this project, follow these steps:\n\n\n### Prerequisites\n\nMake sure you have the following installed on your machine:\n\n- [Node.js](https://nodejs.org/) (version 18 or later)\n- [Docker](https://www.docker.com/products/docker-desktop) (if you want to run the application in a Docker container)\n\n\n### Clone the Repository\n\nClone the repository using Git:\n\n    git clone https://github.com/Frnn4268/weather-app.git\n    cd weather-app\n\n\n### Install Dependencies\n\nInstall the required dependencies using npm:\n\n\u003e npm install\n\n\n### Run the Application Locally\n\nTo run the application locally in development mode, use the following command:\n\n\u003e npm run dev\n\nThe application will be available at  `http://localhost:8080/`\n\n\n### Build the Application\n\nTo build the application for production, use the following command:\n\n\u003e  npm run build\n\nThe production build will be generated in the `dist` directory.\n\n\n## Run the Application with Docker\n\nIf you prefer to run the application using Docker, follow these steps:\n\n1. Build the Docker Image\n\t\u003edocker build -t weather-app .\n\n2. Run the Docker Container\n\t\u003edocker run -p 3000:3000 weather-app\n\nThe application will be available at `http://localhost:3000`.\n\n\n### Run the Application with Docker Compose\n\nTo run the application using Docker Compose, follow these steps:\n\n1. Build and Start the Services\n\n\t\u003e docker-compose up --build\n\n\tThis command will build the Docker image if it doesn't already exist and start the container. The application will be available at `http://localhost:3000`.\n\n2. Stopping the Services\n\n\tTo stop the running services, use the following command:\n\n\t\u003e docker-compose down\n\n\n## Configuration\n\nUpdate the `.env` file in the root of the project to include your OpenWeather API key and any other environment-specific variables.\n\n    VITE_APP_WEATHER_ID=\"your_OpenWeather_Api_key\"\n\n\n## Explanation\n\n- **Project Overview**: A brief description of what the project does.\n- **Features**: Key features of the application.\n- **Technologies Used**: Technologies and tools used in the project.\n- **Getting Started**: Steps to set up and run the project locally.\n- **Docker Instructions**: Instructions for running the app using Docker.\n- **Configuration**: How to set up environment variables.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrnn4268%2Fweather-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrnn4268%2Fweather-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrnn4268%2Fweather-app/lists"}