{"id":28278017,"url":"https://github.com/deviant101/insight360","last_synced_at":"2025-06-16T04:41:02.299Z","repository":{"id":259263964,"uuid":"877275938","full_name":"deviant101/insight360","owner":"deviant101","description":"Get a 360 degree view of world news with in-depth reports \u0026 experts' analysis","archived":false,"fork":false,"pushed_at":"2025-05-17T10:02:17.000Z","size":287,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-17T11:19:12.790Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deviant101.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2024-10-23T11:43:44.000Z","updated_at":"2025-05-17T10:02:21.000Z","dependencies_parsed_at":"2024-10-24T00:43:44.917Z","dependency_job_id":"25facc42-c17b-4e1e-8af2-0f9690e343f4","html_url":"https://github.com/deviant101/insight360","commit_stats":null,"previous_names":["deviant101/insight360"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/deviant101/insight360","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deviant101%2Finsight360","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deviant101%2Finsight360/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deviant101%2Finsight360/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deviant101%2Finsight360/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deviant101","download_url":"https://codeload.github.com/deviant101/insight360/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deviant101%2Finsight360/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260097485,"owners_count":22958210,"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":[],"created_at":"2025-05-21T07:14:17.618Z","updated_at":"2025-06-16T04:41:02.291Z","avatar_url":"https://github.com/deviant101.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Insight360\nInsight360 is a news website that provides the latest updates on various topics including technology, science, sports, entertainment, business, and health. The website features a video gallery, news articles, and a newsletter subscription.\n\n## Table of Contents\n\n- [Features](#features)\n- [Project Structure](#project-structure)\n- [Installation](#installation)\n- [Environment Variables](#environment-variables)\n- [Running the Project](#running-the-project)\n- [API Endpoints](#api-endpoints)\n- [Technologies Used](#technologies-used)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Features\n\n- Display latest news articles by category\n- Video gallery with featured and other videos\n- User authentication (Sign Up, Sign In)\n- Newsletter subscription\n- Responsive design\n\n## Project Structure\nThe project structure is as follows:\n\n```\ninsight360/\n├── backend/\n│   ├── controllers/\n│   │   └── authController.js\n│   ├── models/\n│   │   └── User.js\n│   ├── routes/\n│   │   └── authRoutes.js\n│   ├── .env\n│   ├── .gitignore\n│   ├── docker-compose.yml\n│   ├── package.json\n│   └── server.js\n├── frontend/\n│   ├── public/\n│   │   ├── index.html\n│   │   ├── manifest.json\n│   │   └── robots.txt\n│   ├── src/\n│   │   ├── assets/\n│   │   ├── components/\n│   │   │   ├── Footer.css\n│   │   │   ├── Footer.jsx\n│   │   │   ├── Header.css\n│   │   │   ├── Header.jsx\n│   │   │   ├── MainSection.css\n│   │   │   ├── MainSection.jsx\n│   │   │   ├── Newsletter.css\n│   │   │   ├── Newsletter.jsx\n│   │   │   ├── NewsList.css\n│   │   │   ├── NewsList.jsx\n│   │   │   ├── SearchArticle.css\n│   │   │   ├── SearchArticle.jsx\n│   │   │   ├── SignIn.css\n│   │   │   ├── SignIn.jsx\n│   │   │   ├── SignUp.css\n│   │   │   ├── SignUp.jsx\n│   │   │   ├── VideoGallery.css\n│   │   │   └── VideoGallery.jsx\n│   │   ├── context/\n│   │   │   └── AuthContext.js\n│   │   ├── App.css\n│   │   ├── App.js\n│   │   ├── App.test.js\n│   │   ├── index.css\n│   │   ├── index.js\n│   │   ├── reportWebVitals.js\n│   │   └── setupTests.js\n│   ├── .env\n│   └── package.json\n├── .gitignore\n└── README.md\n```\n\n## Installation\n\n1. Clone the repository:\n    ```sh\n    git clone https://github.com/deviant101/insight360.git\n    cd insight360\n    ```\n\n2. Install dependencies for the frontend:\n    ```sh\n    cd frontend\n    npm install\n    ```\n\n3. Install dependencies for the backend:\n    ```sh\n    cd backend\n    npm install\n    ```\n## Environment Variables\n\nCreate a `.env` file in the `backend` directory and add the following environment variables:\n\n```sh\nMONGO_URI=\u003cyour-mongodb-uri\u003e\nJWT_SECRET=\u003cyour-jwt-secret\u003e\nPORT=5000\n```\n\nCreate a `.env` file in the `frontend` directory and add the following environment variables:\n\n```sh\nREACT_APP_NEWS_KEY=\u003cyour-news-api-key\u003e\n```\n\nCreate a .env file in your project root with the following:\n```sh\nREACT_APP_NEWS_API_KEY=\u003cyour_news_api_key_here\u003e\n```\n\n## Running the Project\n\n1. Start the backend server:\n    ```sh\n    cd backend\n    npm start\n    ```\n\n2. Start the frontend development server:\n    ```sh\n    cd frontend\n    npm start\n    ```\n\n3. Open your browser and navigate to `http://localhost:3000`\n\n## API Endpoints\n\n### Authentication\n\n- `POST /api/auth/register` - Register a new user\n- `POST /api/auth/login` - Login a user\n\n## Technologies Used\n\n- Frontend:\n  - React\n  - Axios\n  - React Router DOM\n\n- Backend:\n  - Node.js\n  - Express\n  - MongoDB\n  - Mongoose\n  - JWT (JSON Web Token)\n  - bcrypt\n\n## Contributing\n\nContributions are welcome! Please fork the repository and create a pull request with your changes.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeviant101%2Finsight360","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeviant101%2Finsight360","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeviant101%2Finsight360/lists"}